mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-17 14:04:52 +02:00
Track window ids on border rects
More robust. Splits layout still needs work.
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user