Implement interactive mouse resizing

This commit is contained in:
Ivan Molodetskikh
2024-05-10 16:58:53 +04:00
parent c4ebb9f58e
commit 9dfa121b8e
13 changed files with 887 additions and 69 deletions
+2 -2
View File
@@ -995,7 +995,7 @@ impl State {
}
});
for win in windows {
self.niri.layout.update_window(&win);
self.niri.layout.update_window(&win, None);
}
}
@@ -2414,7 +2414,7 @@ impl Niri {
drop(config);
for win in windows {
self.layout.update_window(&win);
self.layout.update_window(&win, None);
win.toplevel()
.expect("no X11 support")
.send_pending_configure();