Create the arrows in these widgets as GTK_SHADOW_NONE, since the default

2004-02-26  Rodney Dawes  <dobey@ximian.com>

	* gui/e-meeting-time-sel.c (e_meeting_time_selector_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=24902
This commit is contained in:
Rodney Dawes
2004-02-26 22:25:13 +00:00
committed by Rodney Dawes
parent e867a71d9a
commit 4ca7a08068
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,11 @@
2004-02-26 Rodney Dawes <dobey@ximian.com>
* gui/e-meeting-time-sel.c (e_meeting_time_selector_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
2004-02-26 Rodney Dawes <dobey@ximian.com>
* gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in:

View File

@ -444,7 +444,7 @@ e_meeting_time_selector_construct (EMeetingTimeSelector * mts, EMeetingStore *em
gtk_widget_add_accelerator (mts->options_button, "clicked", mts->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 (child_hbox), arrow, FALSE, FALSE, 6);
gtk_widget_show (arrow);
@ -521,7 +521,7 @@ e_meeting_time_selector_construct (EMeetingTimeSelector * mts, EMeetingStore *em
g_signal_connect (mts->autopick_button, "clicked",
G_CALLBACK (e_meeting_time_selector_on_autopick_button_clicked), mts);
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 (child_hbox), arrow, FALSE, FALSE, 6);
gtk_widget_show (arrow);