We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df74a32 commit e217a91Copy full SHA for e217a91
src/shell/layout/floating/grabs/resize.rs
@@ -120,7 +120,9 @@ impl ResizeSurfaceGrab {
120
},
121
self.last_window_size.as_global(),
122
));
123
- self.window.configure();
+ if self.window.latest_size_committed() {
124
+ self.window.configure();
125
+ }
126
127
false
128
}
src/shell/layout/floating/mod.rs
@@ -990,7 +990,9 @@ impl FloatingLayout {
990
geo.as_local()
991
.to_global(self.space.outputs().next().unwrap()),
992
);
993
- mapped.configure();
+ if mapped.latest_size_committed() {
994
+ mapped.configure();
995
996
997
true
998
0 commit comments