mirror of
https://github.com/brl/mutter.git
synced 2025-02-16 13:24:09 +00:00
recalc_window_features() after making these changes, should fix #103317
2003-01-14 Havoc Pennington <hp@pobox.com> * src/window.c (meta_window_maximize, meta_window_unmaximize) (meta_window_make_fullscreen, meta_window_unmake_fullscreen): recalc_window_features() after making these changes, should fix #103317
This commit is contained in:
parent
667a056066
commit
25615f929e
@ -1,3 +1,10 @@
|
|||||||
|
2003-01-14 Havoc Pennington <hp@pobox.com>
|
||||||
|
|
||||||
|
* src/window.c (meta_window_maximize, meta_window_unmaximize)
|
||||||
|
(meta_window_make_fullscreen, meta_window_unmake_fullscreen):
|
||||||
|
recalc_window_features() after making these changes, should fix
|
||||||
|
#103317
|
||||||
|
|
||||||
2003-01-14 Rob Adams <robadams@ucla.edu>
|
2003-01-14 Rob Adams <robadams@ucla.edu>
|
||||||
|
|
||||||
* src/prefs.c: Increase the number of run_command bindings in
|
* src/prefs.c: Increase the number of run_command bindings in
|
||||||
|
@ -1801,6 +1801,7 @@ meta_window_maximize (MetaWindow *window)
|
|||||||
*/
|
*/
|
||||||
meta_window_queue_move_resize (window);
|
meta_window_queue_move_resize (window);
|
||||||
|
|
||||||
|
recalc_window_features (window);
|
||||||
set_net_wm_state (window);
|
set_net_wm_state (window);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1822,6 +1823,7 @@ meta_window_unmaximize (MetaWindow *window)
|
|||||||
window->saved_rect.width,
|
window->saved_rect.width,
|
||||||
window->saved_rect.height);
|
window->saved_rect.height);
|
||||||
|
|
||||||
|
recalc_window_features (window);
|
||||||
set_net_wm_state (window);
|
set_net_wm_state (window);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1852,6 +1854,7 @@ meta_window_make_fullscreen (MetaWindow *window)
|
|||||||
*/
|
*/
|
||||||
meta_window_queue_move_resize (window);
|
meta_window_queue_move_resize (window);
|
||||||
|
|
||||||
|
recalc_window_features (window);
|
||||||
set_net_wm_state (window);
|
set_net_wm_state (window);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1875,6 +1878,7 @@ meta_window_unmake_fullscreen (MetaWindow *window)
|
|||||||
window->saved_rect.width,
|
window->saved_rect.width,
|
||||||
window->saved_rect.height);
|
window->saved_rect.height);
|
||||||
|
|
||||||
|
recalc_window_features (window);
|
||||||
set_net_wm_state (window);
|
set_net_wm_state (window);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user