Track window ids on border rects

More robust. Splits layout still needs work.
This commit is contained in:
Kovid Goyal
2026-03-02 08:31:36 +05:30
parent 9c0d7b83b1
commit 6b54c201e5
11 changed files with 184 additions and 120 deletions

View File

@@ -948,7 +948,8 @@ class Window:
def pause_resize_notifications_to_child(self, pause: bool = True) -> None:
if pause:
self._pause_resize_notifications_to_child = -1, -1, -1, -1
if self._pause_resize_notifications_to_child is None:
self._pause_resize_notifications_to_child = -1, -1, -1, -1
else:
p, self._pause_resize_notifications_to_child = self._pause_resize_notifications_to_child, None
if p and p[0] > 0: