mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
Correct the stacking when return from fullscreen mode. Fixes #165718.
2005-01-31 Elijah Newren <newren@gmail.com> Correct the stacking when return from fullscreen mode. Fixes #165718. * src/window.c: (meta_window_unmake_fullscreen): Update the layer after resizing the window
This commit is contained in:
parent
595c86f427
commit
51bbd0e1a8
@ -1,3 +1,11 @@
|
|||||||
|
2005-01-31 Elijah Newren <newren@gmail.com>
|
||||||
|
|
||||||
|
Correct the stacking when return from fullscreen mode. Fixes
|
||||||
|
#165718.
|
||||||
|
|
||||||
|
* src/window.c: (meta_window_unmake_fullscreen): Update the layer
|
||||||
|
after resizing the window
|
||||||
|
|
||||||
2005-01-31 Muktha <muktha.narayan@wipro.com>
|
2005-01-31 Muktha <muktha.narayan@wipro.com>
|
||||||
|
|
||||||
src/themes/Atlanta/metacity-theme-1.xml:
|
src/themes/Atlanta/metacity-theme-1.xml:
|
||||||
|
@ -2052,8 +2052,6 @@ meta_window_unmake_fullscreen (MetaWindow *window)
|
|||||||
|
|
||||||
window->fullscreen = FALSE;
|
window->fullscreen = FALSE;
|
||||||
|
|
||||||
meta_window_update_layer (window);
|
|
||||||
|
|
||||||
meta_window_move_resize (window,
|
meta_window_move_resize (window,
|
||||||
TRUE,
|
TRUE,
|
||||||
window->saved_rect.x,
|
window->saved_rect.x,
|
||||||
@ -2061,6 +2059,8 @@ meta_window_unmake_fullscreen (MetaWindow *window)
|
|||||||
window->saved_rect.width,
|
window->saved_rect.width,
|
||||||
window->saved_rect.height);
|
window->saved_rect.height);
|
||||||
|
|
||||||
|
meta_window_update_layer (window);
|
||||||
|
|
||||||
recalc_window_features (window);
|
recalc_window_features (window);
|
||||||
set_net_wm_state (window);
|
set_net_wm_state (window);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user