Don't use the parent widget for hiding tray icon
This commit is contained in:
parent
1be8cce8c8
commit
14c0bf10c8
@ -1,3 +1,9 @@
|
||||
2005-06-17 Lucas Rocha <lucasr@cvs.gnome.org>
|
||||
|
||||
* src/notification.c: don't use parent widget for
|
||||
hiding the tray icon because it breaks the 'visible'
|
||||
command
|
||||
|
||||
2005-06-13 Lucas Rocha <lucasr@cvs.gnome.org>
|
||||
|
||||
* MAINTAINERS: adding myself as a new maintainer
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user