diff options
author | Rodney Dawes <dobey@ximian.com> | 2004-02-27 06:20:15 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-02-27 06:20:15 +0800 |
commit | 88040b5329b2707a8e1aaf29b9727b77687d2a78 (patch) | |
tree | dae52e4aacf9caffecf5b29a48a126aec96e227e /widgets/misc/e-dropdown-button.c | |
parent | f3e42519bb7b9aace13ac10a2f592cc330c1033a (diff) | |
download | gsoc2013-evolution-88040b5329b2707a8e1aaf29b9727b77687d2a78.tar.gz gsoc2013-evolution-88040b5329b2707a8e1aaf29b9727b77687d2a78.tar.zst gsoc2013-evolution-88040b5329b2707a8e1aaf29b9727b77687d2a78.zip |
Create the arrows in these widgets as GTK_SHADOW_NONE, since the default
2004-02-26 Rodney Dawes <dobey@ximian.com>
* e-cell-renderer-combo.c (ecrc_get_size):
* e-dateedit.c (create_children):
* e-dropdown-button.c (e_dropdown_button_construct): Create the
arrows in these widgets as GTK_SHADOW_NONE, since the default arrow
type in GTK+ 2.x is flat triangle arrows, and shadow types are
generally ignored for arrows anyway, and so we don't look ugly with
themes that handle shadow types on arrows correctly
svn path=/trunk/; revision=24900
Diffstat (limited to 'widgets/misc/e-dropdown-button.c')
-rw-r--r-- | widgets/misc/e-dropdown-button.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/misc/e-dropdown-button.c b/widgets/misc/e-dropdown-button.c index 119aba8363..4a0327e7be 100644 --- a/widgets/misc/e-dropdown-button.c +++ b/widgets/misc/e-dropdown-button.c @@ -208,7 +208,7 @@ e_dropdown_button_construct (EDropdownButton *dropdown_button, gtk_widget_add_accelerator (GTK_WIDGET (dropdown_button), "clicked", priv->accel_group, accel_key, GDK_MOD1_MASK, 0); - arrow = gtk_arrow_new (GTK_ARROW_DOWN, GTK_SHADOW_OUT); + arrow = gtk_arrow_new (GTK_ARROW_DOWN, GTK_SHADOW_NONE); gtk_box_pack_start (GTK_BOX (hbox), arrow, FALSE, FALSE, 2); gtk_widget_show (arrow); |