aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-dropdown-button.c
diff options
context:
space:
mode:
authorRodney Dawes <dobey@ximian.com>2004-02-27 06:20:15 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-02-27 06:20:15 +0800
commit88040b5329b2707a8e1aaf29b9727b77687d2a78 (patch)
treedae52e4aacf9caffecf5b29a48a126aec96e227e /widgets/misc/e-dropdown-button.c
parentf3e42519bb7b9aace13ac10a2f592cc330c1033a (diff)
downloadgsoc2013-evolution-88040b5329b2707a8e1aaf29b9727b77687d2a78.tar
gsoc2013-evolution-88040b5329b2707a8e1aaf29b9727b77687d2a78.tar.gz
gsoc2013-evolution-88040b5329b2707a8e1aaf29b9727b77687d2a78.tar.bz2
gsoc2013-evolution-88040b5329b2707a8e1aaf29b9727b77687d2a78.tar.lz
gsoc2013-evolution-88040b5329b2707a8e1aaf29b9727b77687d2a78.tar.xz
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.c2
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);