aboutsummaryrefslogtreecommitdiff
path: root/libayatana-indicator/indicator-ng.c
diff options
context:
space:
mode:
Diffstat (limited to 'libayatana-indicator/indicator-ng.c')
-rw-r--r--libayatana-indicator/indicator-ng.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libayatana-indicator/indicator-ng.c b/libayatana-indicator/indicator-ng.c
index 79a612c..58cc2a6 100644
--- a/libayatana-indicator/indicator-ng.c
+++ b/libayatana-indicator/indicator-ng.c
@@ -528,7 +528,8 @@ static void indicator_ng_set_label(IndicatorNg *self, const gchar *label)
{
if (self->entry.label)
{
- gtk_widget_hide(GTK_WIDGET (self->entry.label));
+ // Hiding the label also hides the image - set the label instead of gtk_widget_hide
+ gtk_label_set_label(GTK_LABEL (self->entry.label), NULL);
}
return;