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:
Havoc Pennington 2003-01-16 03:20:34 +00:00 committed by Havoc Pennington
parent 667a056066
commit 25615f929e
2 changed files with 11 additions and 0 deletions

View File

@ -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>
* src/prefs.c: Increase the number of run_command bindings in

View File

@ -1801,6 +1801,7 @@ meta_window_maximize (MetaWindow *window)
*/
meta_window_queue_move_resize (window);
recalc_window_features (window);
set_net_wm_state (window);
}
}
@ -1822,6 +1823,7 @@ meta_window_unmaximize (MetaWindow *window)
window->saved_rect.width,
window->saved_rect.height);
recalc_window_features (window);
set_net_wm_state (window);
}
}
@ -1852,6 +1854,7 @@ meta_window_make_fullscreen (MetaWindow *window)
*/
meta_window_queue_move_resize (window);
recalc_window_features (window);
set_net_wm_state (window);
}
}
@ -1875,6 +1878,7 @@ meta_window_unmake_fullscreen (MetaWindow *window)
window->saved_rect.width,
window->saved_rect.height);
recalc_window_features (window);
set_net_wm_state (window);
}
}