aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorRodney Dawes <dobey@ximian.com>2004-02-27 06:22:56 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-02-27 06:22:56 +0800
commite867a71d9a5d84e9623d6eb1924635c871abab0d (patch)
treedcf77d4062d6c0d219d06c5b9993b7f01a1194f8 /mail
parent88040b5329b2707a8e1aaf29b9727b77687d2a78 (diff)
downloadgsoc2013-evolution-e867a71d9a5d84e9623d6eb1924635c871abab0d.tar
gsoc2013-evolution-e867a71d9a5d84e9623d6eb1924635c871abab0d.tar.gz
gsoc2013-evolution-e867a71d9a5d84e9623d6eb1924635c871abab0d.tar.bz2
gsoc2013-evolution-e867a71d9a5d84e9623d6eb1924635c871abab0d.tar.lz
gsoc2013-evolution-e867a71d9a5d84e9623d6eb1924635c871abab0d.tar.xz
gsoc2013-evolution-e867a71d9a5d84e9623d6eb1924635c871abab0d.tar.zst
gsoc2013-evolution-e867a71d9a5d84e9623d6eb1924635c871abab0d.zip
Create the arrows in these widgets as GTK_SHADOW_NONE, since the default
2004-02-26 Rodney Dawes <dobey@ximian.com> * em-format-html-display.c (efhd_attachment_button): 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=24901
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog8
-rw-r--r--mail/em-format-html-display.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index d742368388..b006299882 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,11 @@
+2004-02-26 Rodney Dawes <dobey@ximian.com>
+
+ * em-format-html-display.c (efhd_attachment_button): 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
+
2004-02-26 Jeffrey Stedfast <fejj@ximian.com>
Fix for bug #54352
diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c
index a241518b05..fc26251a83 100644
--- a/mail/em-format-html-display.c
+++ b/mail/em-format-html-display.c
@@ -1274,7 +1274,7 @@ efhd_attachment_button(EMFormatHTML *efh, GtkHTMLEmbedded *eb, EMFormatHTMLPObje
button = gtk_button_new();
/*GTK_WIDGET_UNSET_FLAGS(button, GTK_CAN_FOCUS);*/
- gtk_container_add((GtkContainer *)button, gtk_arrow_new(GTK_ARROW_DOWN, GTK_SHADOW_ETCHED_IN));
+ gtk_container_add((GtkContainer *)button, gtk_arrow_new(GTK_ARROW_DOWN, GTK_SHADOW_NONE));
g_signal_connect(button, "button_press_event", G_CALLBACK(efhd_attachment_popup), info);
g_signal_connect(button, "popup_menu", G_CALLBACK(efhd_attachment_popup_menu), info);
g_signal_connect(button, "clicked", G_CALLBACK(efhd_attachment_popup_menu), info);