aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2014-07-21 22:17:43 +0800
committerMilan Crha <mcrha@redhat.com>2014-07-21 22:17:43 +0800
commit1de2564ea0ecdb3e7f981441cc9860f0fa3ec3d8 (patch)
tree5debdbcbea23e8bf658727fe2d5c31f96f6ba955
parent8d2e1340cf46d0e630448c5f9fe4ed02229cd06b (diff)
downloadgsoc2013-evolution-1de2564ea0ecdb3e7f981441cc9860f0fa3ec3d8.tar
gsoc2013-evolution-1de2564ea0ecdb3e7f981441cc9860f0fa3ec3d8.tar.gz
gsoc2013-evolution-1de2564ea0ecdb3e7f981441cc9860f0fa3ec3d8.tar.bz2
gsoc2013-evolution-1de2564ea0ecdb3e7f981441cc9860f0fa3ec3d8.tar.lz
gsoc2013-evolution-1de2564ea0ecdb3e7f981441cc9860f0fa3ec3d8.tar.xz
gsoc2013-evolution-1de2564ea0ecdb3e7f981441cc9860f0fa3ec3d8.tar.zst
gsoc2013-evolution-1de2564ea0ecdb3e7f981441cc9860f0fa3ec3d8.zip
Calendar View: Use smaller icons in the Search bar
The icons at the search bar, to search forward, backward and stop searching were too large, which didn't look good. This makes them smaller, though even here can be seen a little gap around the images in the buttons which might not be there ideally.
-rw-r--r--modules/calendar/e-cal-shell-view.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/calendar/e-cal-shell-view.c b/modules/calendar/e-cal-shell-view.c
index 41d6d54a43..9bdcfea399 100644
--- a/modules/calendar/e-cal-shell-view.c
+++ b/modules/calendar/e-cal-shell-view.c
@@ -38,7 +38,8 @@ cal_shell_view_add_action_button (GtkBox *box,
GtkWidget *button, *icon;
button = gtk_button_new ();
- icon = gtk_action_create_icon (action, GTK_ICON_SIZE_BUTTON);
+ icon = gtk_action_create_icon (action, GTK_ICON_SIZE_MENU);
+ gtk_image_set_pixel_size (GTK_IMAGE (icon), 16);
gtk_button_set_image (GTK_BUTTON (button), icon);
gtk_box_pack_start (box, button, FALSE, FALSE, 0);
gtk_widget_show (button);