diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2011-03-01 22:31:13 -0500 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2011-03-03 17:48:25 -0500 |
commit | 64aac9624ce58e76f1c9ab58d0c6357ca7f97b1f (patch) | |
tree | e5a3b21d9299f872593ace9f1a00cd7f77d53b5c /gtk/gtkcheckmenuitem.c | |
parent | ea7661cb3f50de3bed1201916758f800220bd475 (diff) | |
download | gtk+-64aac9624ce58e76f1c9ab58d0c6357ca7f97b1f.tar.gz |
Use 16 as default size for checkbutton indicator
So that 16x16 icons can be used from themes such as Adwaita in their
natural size.
Diffstat (limited to 'gtk/gtkcheckmenuitem.c')
-rw-r--r-- | gtk/gtkcheckmenuitem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcheckmenuitem.c b/gtk/gtkcheckmenuitem.c index 850a811518..8385ff56c2 100644 --- a/gtk/gtkcheckmenuitem.c +++ b/gtk/gtkcheckmenuitem.c @@ -34,7 +34,7 @@ #include "gtkprivate.h" #include "gtkintl.h" - +#define INDICATOR_SIZE 16 struct _GtkCheckMenuItemPrivate { @@ -130,7 +130,7 @@ gtk_check_menu_item_class_init (GtkCheckMenuItemClass *klass) P_("Size of check or radio indicator"), 0, G_MAXINT, - 13, + INDICATOR_SIZE, GTK_PARAM_READABLE)); widget_class->draw = gtk_check_menu_item_draw; |