summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--command/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/command/command.c b/command/command.c
index 107f97d3..f53bef43 100644
--- a/command/command.c
+++ b/command/command.c
@@ -297,7 +297,7 @@ process_command_output (CommandApplet *command_applet, gchar *output)
}
if (icon)
- gtk_image_set_from_icon_name (command_applet->image, icon, 24);
+ gtk_image_set_from_icon_name (command_applet->image, icon, GTK_ICON_SIZE_LARGE_TOOLBAR);
g_free (goutput);
g_free (icon);
@@ -422,7 +422,7 @@ command_applet_fill (MatePanelApplet* applet)
command_applet->cancellable = g_cancellable_new ();
command_applet->box = GTK_BOX (gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0));
- command_applet->image = GTK_IMAGE (gtk_image_new_from_icon_name (APPLET_ICON, 24));
+ command_applet->image = GTK_IMAGE (gtk_image_new_from_icon_name (APPLET_ICON, GTK_ICON_SIZE_LARGE_TOOLBAR));
command_applet->label = GTK_LABEL (gtk_label_new (ERROR_OUTPUT));
command_applet->timeout_id = 0;