Codebase list policykit-1-gnome / 6374426
Remove debian/patches/03-status-icon-whitespace.patch, merged upstream. Michael Biebl 14 years ago
3 changed file(s) with 1 addition(s) and 30 deletion(s). Raw diff Collapse all Expand all
22 * New upstream release.
33 * debian/control
44 - Bump Build-Depends on libpolkit-{agent,gobject}-1-dev to (>= 0.95).
5 * Remove debian/patches/03-status-icon-whitespace.patch, merged upstream.
56
67 -- Michael Biebl <biebl@debian.org> Sat, 14 Nov 2009 05:37:06 +0100
78
+0
-29
debian/patches/03-status-icon-whitespace.patch less more
0 From f79b5a04a705706cce301b92556a4f7e8ad932c8 Mon Sep 17 00:00:00 2001
1 From: Chris Coulson <chrisccoulson@googlemail.com>
2 Date: Sun, 4 Oct 2009 20:50:25 +0100
3 Subject: [PATCH] Set status icon invisible before unref'ing it
4
5 Set the status icon invisible before unref'ing it. This avoids
6 leaving whitespace in the notification area, which grows in size
7 each time the icon is displayed/hidden
8
9 https://bugzilla.gnome.org/show_bug.cgi?id=597346
10 ---
11 src/main.c | 1 +
12 1 files changed, 1 insertions(+), 0 deletions(-)
13
14 diff --git a/src/main.c b/src/main.c
15 index 5970670..a8970df 100644
16 --- a/src/main.c
17 +++ b/src/main.c
18 @@ -141,6 +141,7 @@ update_temporary_authorization_icon_real (void)
19 /* hide icon */
20 if (status_icon != NULL)
21 {
22 + gtk_status_icon_set_visible (status_icon, FALSE);
23 g_object_unref (status_icon);
24 status_icon = NULL;
25 }
26 --
27 1.6.3.3
28
00 # Debian patches for policykit-1-gnome
11 01-fix-autostart.patch
22 02-select-default-user.patch
3 03-status-icon-whitespace.patch