diff options
author | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-09-25 09:47:00 +0200 |
---|---|---|
committer | Lars Uebernickel <lars.uebernickel@canonical.com> | 2012-09-25 09:47:00 +0200 |
commit | 4640bd97d81bce760044b19fd24ea5a70ceca1c0 (patch) | |
tree | 685f27e040ca4a6d67bb2e55d61d798f80437864 | |
parent | c5527d3044dd1e7d9909e48c91de7bf4cbc86fd4 (diff) | |
download | ayatana-indicator-messages-4640bd97d81bce760044b19fd24ea5a70ceca1c0.tar.gz ayatana-indicator-messages-4640bd97d81bce760044b19fd24ea5a70ceca1c0.tar.bz2 ayatana-indicator-messages-4640bd97d81bce760044b19fd24ea5a70ceca1c0.zip |
Request LARGE_TOOLBAR icons for the panel
To make it consistent with the other indicators.
-rw-r--r-- | src/indicator-messages.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/indicator-messages.c b/src/indicator-messages.c index db4f634..13b3409 100644 --- a/src/indicator-messages.c +++ b/src/indicator-messages.c @@ -297,7 +297,7 @@ indicator_messages_add_toplevel_menu (IndicatorMessages *self) icon = g_menu_model_get_item_attribute_icon (self->menu, 0, "x-canonical-icon"); if (icon) { - gtk_image_set_from_gicon (GTK_IMAGE (self->image), icon, GTK_ICON_SIZE_MENU); + gtk_image_set_from_gicon (GTK_IMAGE (self->image), icon, GTK_ICON_SIZE_LARGE_TOOLBAR); g_object_unref (icon); } @@ -344,8 +344,7 @@ indicator_messages_update_icon (IndicatorMessages *self, gtk_image_set_from_icon_name (GTK_IMAGE (self->image), g_variant_get_string (state, NULL), - GTK_ICON_SIZE_MENU); - + GTK_ICON_SIZE_LARGE_TOOLBAR); } static void |