diff options
author | Lucas Almeida Rocha <lucasr@src.gnome.org> | 2005-06-17 03:18:41 +0000 |
---|---|---|
committer | Lucas Almeida Rocha <lucasr@src.gnome.org> | 2005-06-17 03:18:41 +0000 |
commit | 14c0bf10c84cf576135c9fdb1e549351ebf5e27c (patch) | |
tree | a3fd99e93a6de7b0b9a32e12fb31b538e733b0c1 /src | |
parent | Updated Thai translation. (diff) | |
download | zenity-14c0bf10c84cf576135c9fdb1e549351ebf5e27c.tar.gz zenity-14c0bf10c84cf576135c9fdb1e549351ebf5e27c.tar.bz2 zenity-14c0bf10c84cf576135c9fdb1e549351ebf5e27c.zip |
Don't use the parent widget for hiding tray icon
Diffstat (limited to 'src')
-rw-r--r-- | src/notification.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/notification.c b/src/notification.c index 8aa0d917..509d2f8e 100644 --- a/src/notification.c +++ b/src/notification.c @@ -184,12 +184,9 @@ zenity_notification_handle_stdin (GIOChannel *channel, gtk_tooltips_set_tip (tooltips, icon_event_box, value, value); } else if (!strcmp (command, "visible")) { if (!strcasecmp (value, "false")) { - /* We need to get the parent, because just hiding the tray_icon - * doesn't save on space. See #161539 for details - */ - gtk_widget_hide (gtk_widget_get_parent (GTK_WIDGET (tray_icon))); + gtk_widget_hide (GTK_WIDGET (tray_icon)); } else { - gtk_widget_show (gtk_widget_get_parent (GTK_WIDGET (tray_icon))); + gtk_widget_show (GTK_WIDGET (tray_icon)); } } else { g_warning ("Unknown command '%s'", command); |