diff -Nru lxlauncher-0.2.1/debian/changelog lxlauncher-0.2.1/debian/changelog --- lxlauncher-0.2.1/debian/changelog 2011-02-26 16:37:20.000000000 -0800 +++ lxlauncher-0.2.1/debian/changelog 2011-05-11 19:34:08.000000000 -0700 @@ -1,3 +1,9 @@ +lxlauncher (0.2.1-3ubuntu3) oneiric; urgency=low + + * src/lxlauncher.c: Disable main window resize handle. (LP: #778151) + + -- Jonathan Marsden Wed, 11 May 2011 19:19:55 -0700 + lxlauncher (0.2.1-3ubuntu2) natty; urgency=low * Remove auto-generated patch. diff -Nru lxlauncher-0.2.1/debian/patches/81_disable_main_window_resize_handle.patch lxlauncher-0.2.1/debian/patches/81_disable_main_window_resize_handle.patch --- lxlauncher-0.2.1/debian/patches/81_disable_main_window_resize_handle.patch 1969-12-31 16:00:00.000000000 -0800 +++ lxlauncher-0.2.1/debian/patches/81_disable_main_window_resize_handle.patch 2011-05-11 19:30:41.000000000 -0700 @@ -0,0 +1,20 @@ +Description: Disable main window resize handle. (LP: #778151) +Author: Jonathan Marsden +Bug-Ubuntu: https://bugs.launchpad.net/bugs/778151 +Last-Update: 2011-05-11 + +--- lxlauncher-0.2.1.orig/src/lxlauncher.c ++++ lxlauncher-0.2.1/src/lxlauncher.c +@@ -763,6 +763,12 @@ int main(int argc, char** argv) + gtk_window_set_position( main_window, GTK_WIN_POS_NONE ); + //gtk_window_set_gravity(GDK_GRAVITY_STATIC ); + ++ /* ++ Remove resize grip in Ubuntu 11.04 which breaks background painting ++ see https://bugs.launchpad.net/ubuntu/+source/lxlauncher/+bug/778151 ++ */ ++ gtk_window_set_has_resize_grip(GTK_WINDOW(main_window), FALSE); ++ + g_signal_connect(main_window, "delete-event", G_CALLBACK(window_delete), NULL); + + atom_NET_WORKAREA = XInternAtom( GDK_DISPLAY(), "_NET_WORKAREA", True);; diff -Nru lxlauncher-0.2.1/debian/patches/series lxlauncher-0.2.1/debian/patches/series --- lxlauncher-0.2.1/debian/patches/series 2011-02-26 11:57:15.000000000 -0800 +++ lxlauncher-0.2.1/debian/patches/series 2011-05-11 19:33:21.000000000 -0700 @@ -3,3 +3,4 @@ 03_libmenu-cache-0.3-series.patch 04_fix-ftbfs_binutils-gold.patch 80_translations.patch +81_disable_main_window_resize_handle.patch