# # Ubuntu: https://bugs.edge.launchpad.net/metacity/+bug/283447 # Upstream: http://bugzilla.gnome.org/show_bug.cgi?id=569812 # Patch: http://bugzilla.gnome.org/attachment.cgi?id=127535&action=view # Description: Undecorating maximised windows causes a space of about 23px # to be left empty at the bottom of the window. This patch # queues a resize un undecorate, which fixes the issue. # diff -Nur -x '*.orig' -x '*~' metacity-2.22.0/src/core/frame.c metacity-2.22.0.new/src/core/frame.c --- metacity-2.22.0/src/core/frame.c 2008-09-05 15:44:00.000000000 +0100 +++ metacity-2.22.0.new/src/core/frame.c 2008-09-08 12:18:30.000000000 +0100 @@ -224,6 +224,7 @@ /* Put our state back where it should be */ meta_window_queue (window, META_QUEUE_CALC_SHOWING); + meta_window_queue (window, META_QUEUE_MOVE_RESIZE); }