diff options
author | Ted Gould <ted@gould.cx> | 2010-03-03 21:02:53 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-03-03 21:02:53 -0600 |
commit | 4533e76797864b2e949ffa150359145d861f0045 (patch) | |
tree | 1512cfaed4d0b2a097e3e6579b4ab4adb045df42 | |
parent | 7309355f8339fd0cc3c149769bce5d9452bc5e44 (diff) | |
parent | b713998c9af2c9929c6b2667174cec5c4af75041 (diff) | |
download | ayatana-indicator-session-4533e76797864b2e949ffa150359145d861f0045.tar.gz ayatana-indicator-session-4533e76797864b2e949ffa150359145d861f0045.tar.bz2 ayatana-indicator-session-4533e76797864b2e949ffa150359145d861f0045.zip |
Merge in ubuntu-desktop
-rw-r--r-- | debian/changelog | 21 | ||||
-rw-r--r-- | src/gtk-dialog/logout-dialog.c | 1 |
2 files changed, 20 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index ad044a4..68d8e57 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,10 @@ -indicator-session (0.2.4-0ubuntu1~ppa1) lucid; urgency=low +indicator-session (0.2.4-0ubuntu2) lucid; urgency=low + + * Backport upstream change to fix decoration rendering issues + + -- Sebastien Bacher <seb128@ubuntu.com> Tue, 02 Mar 2010 16:03:20 +0100 + +indicator-session (0.2.4-0ubuntu1) lucid; urgency=low * Upstream release 0.2.4 * When we can't shutdown with gnome-session fallback to using @@ -7,8 +13,20 @@ indicator-session (0.2.4-0ubuntu1~ppa1) lucid; urgency=low * Change suspend and hibernate detection property names for adjustment to upower. + [Ken VanDine] + * debian/patches/fix-session-menu-without-gdm.patch + - dropped patch, merged upstream + -- Ted Gould <ted@ubuntu.com> Thu, 25 Feb 2010 11:57:41 -0600 +indicator-session (0.2.3-0ubuntu2) lucid; urgency=low + + * debian/patches/fix-session-menu-without-gdm.patch + - Don't fail with a g_error when we fail to get a list of user sessions + from gdm (LP: #506683) + + -- Ken VanDine <ken.vandine@canonical.com> Fri, 19 Feb 2010 09:43:14 -0500 + indicator-session (0.2.3-0ubuntu1) lucid; urgency=low * Upstream release 0.2.3 @@ -344,3 +362,4 @@ indicator-sus (0.1~ppa1) intrepid; urgency=low * Initial release -- Ted Gould <ted@ubuntu.com> Thu, 04 Dec 2008 23:51:41 -0800 + diff --git a/src/gtk-dialog/logout-dialog.c b/src/gtk-dialog/logout-dialog.c index 65df9fe..98806ca 100644 --- a/src/gtk-dialog/logout-dialog.c +++ b/src/gtk-dialog/logout-dialog.c @@ -278,7 +278,6 @@ logout_dialog_init (LogoutDialog *logout_dialog) gtk_widget_realize(GTK_WIDGET(logout_dialog)); /* remove superfluous window buttons */ gdk_window_set_functions (GTK_WIDGET(logout_dialog)->window, 0); - gdk_window_set_decorations (GTK_WIDGET(logout_dialog)->window, GDK_DECOR_BORDER | GDK_DECOR_TITLE); /* center window */ gtk_window_set_position (GTK_WINDOW(logout_dialog), GTK_WIN_POS_CENTER); |