@@ -592,7 +592,6 @@ impl WaylandWindowInner {
592
592
if self . window_frame . is_dirty ( ) && !self . window_frame . is_hidden ( ) {
593
593
self . window_frame . draw ( ) ;
594
594
}
595
- window. wl_surface ( ) . commit ( ) ;
596
595
}
597
596
}
598
597
@@ -854,6 +853,7 @@ impl WaylandWindowInner {
854
853
let height =
855
854
NonZeroU32 :: new ( pixel_height as u32 ) . unwrap_or ( NonZeroU32 :: new ( 1 ) . unwrap ( ) ) ;
856
855
self . window_frame . resize ( width, height) ;
856
+ pending. refresh_decorations = true
857
857
}
858
858
let ( x, y) = self . window_frame . location ( ) ;
859
859
self . window
@@ -915,7 +915,6 @@ impl WaylandWindowInner {
915
915
}
916
916
}
917
917
}
918
- self . refresh_frame ( ) ;
919
918
self . do_paint ( ) . unwrap ( ) ;
920
919
}
921
920
}
@@ -1243,7 +1242,6 @@ impl WaylandState {
1243
1242
. window_by_id ( window_id)
1244
1243
. expect ( "Inner Window should exist" ) ;
1245
1244
1246
- let is_frame_hidden = window_inner. borrow ( ) . window_frame . is_hidden ( ) ;
1247
1245
let p = window_inner. borrow ( ) . pending_event . clone ( ) ;
1248
1246
let mut pending_event = p. lock ( ) . unwrap ( ) ;
1249
1247
@@ -1280,31 +1278,6 @@ impl WaylandState {
1280
1278
state |= WindowState :: MAXIMIZED ;
1281
1279
}
1282
1280
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
- }
1308
1281
log:: debug!(
1309
1282
"Config: self.window_state={:?}, states: {:?} {:?}" ,
1310
1283
pending_event. window_state,
0 commit comments