diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | src/libappindicator/app-indicator.c | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index e765b40..e4a3fa9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,12 +1,12 @@ -indicator-application (0.0.13-0ubuntu3~ppa3) UNRELEASED; urgency=low +indicator-application (0.0.13-0ubuntu3~ppa4) UNRELEASED; urgency=low * Upstream merge * Fixing automatic updating of menus - * Handling the visibility of menus better * Improve testing to be more reliable * Handle null string attention icons + * Handling the visibility of menus better - -- Ted Gould <ted@ubuntu.com> Tue, 23 Feb 2010 09:45:14 -0600 + -- Ted Gould <ted@ubuntu.com> Tue, 23 Feb 2010 09:46:38 -0600 indicator-application (0.0.13-0ubuntu3~ppa2) lucid; urgency=low diff --git a/src/libappindicator/app-indicator.c b/src/libappindicator/app-indicator.c index 70ca6a2..7c1ac82 100644 --- a/src/libappindicator/app-indicator.c +++ b/src/libappindicator/app-indicator.c @@ -1263,6 +1263,9 @@ container_iterate (GtkWidget *widget, dbusmenu_menuitem_property_set_bool (child, DBUSMENU_MENUITEM_PROP_ENABLED, GTK_WIDGET_IS_SENSITIVE (widget)); + dbusmenu_menuitem_property_set_bool (child, + DBUSMENU_MENUITEM_PROP_VISIBLE, + gtk_widget_get_visible (widget)); g_signal_connect (widget, "notify", G_CALLBACK (widget_notify_cb), child); |