Skip to content

Commit 86e4ce3

Browse files
fix(wayland): fix issue with tiled and maximized window
Potential fix for #6262
1 parent d8f4cb3 commit 86e4ce3

File tree

1 file changed

+1
-28
lines changed

1 file changed

+1
-28
lines changed

window/src/os/wayland/window.rs

+1-28
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,6 @@ impl WaylandWindowInner {
592592
if self.window_frame.is_dirty() && !self.window_frame.is_hidden() {
593593
self.window_frame.draw();
594594
}
595-
window.wl_surface().commit();
596595
}
597596
}
598597

@@ -854,6 +853,7 @@ impl WaylandWindowInner {
854853
let height =
855854
NonZeroU32::new(pixel_height as u32).unwrap_or(NonZeroU32::new(1).unwrap());
856855
self.window_frame.resize(width, height);
856+
pending.refresh_decorations = true
857857
}
858858
let (x, y) = self.window_frame.location();
859859
self.window
@@ -915,7 +915,6 @@ impl WaylandWindowInner {
915915
}
916916
}
917917
}
918-
self.refresh_frame();
919918
self.do_paint().unwrap();
920919
}
921920
}
@@ -1243,7 +1242,6 @@ impl WaylandState {
12431242
.window_by_id(window_id)
12441243
.expect("Inner Window should exist");
12451244

1246-
let is_frame_hidden = window_inner.borrow().window_frame.is_hidden();
12471245
let p = window_inner.borrow().pending_event.clone();
12481246
let mut pending_event = p.lock().unwrap();
12491247

@@ -1280,31 +1278,6 @@ impl WaylandState {
12801278
state |= WindowState::MAXIMIZED;
12811279
}
12821280

1283-
// For MAXIMIZED and FULL_SCREEN window configure contains Windowed size.
1284-
// Replacing it with Wayland suggested bounds.
1285-
if state.intersects(WindowState::MAXIMIZED | WindowState::FULL_SCREEN) {
1286-
if let Some((w, h)) = configure.suggested_bounds {
1287-
pending_event.configure.replace((w, h));
1288-
}
1289-
} else if configure
1290-
.state
1291-
.contains(SCTKWindowState::TILED_TOP | SCTKWindowState::TILED_BOTTOM)
1292-
&& is_frame_hidden
1293-
{
1294-
// Tiled window without borders will take exactly half of the screen.
1295-
if let Some((w, h)) = configure.suggested_bounds {
1296-
pending_event.configure.replace((w / 2, h));
1297-
}
1298-
} else if configure
1299-
.state
1300-
.contains(SCTKWindowState::TILED_LEFT | SCTKWindowState::TILED_RIGHT)
1301-
&& is_frame_hidden
1302-
{
1303-
// Tiled window without borders will take exactly half of the screen.
1304-
if let Some((w, h)) = configure.suggested_bounds {
1305-
pending_event.configure.replace((w, h / 2));
1306-
}
1307-
}
13081281
log::debug!(
13091282
"Config: self.window_state={:?}, states: {:?} {:?}",
13101283
pending_event.window_state,

0 commit comments

Comments
 (0)