[Calendar] - Scheduling page UI colors
Harish <[email protected]>
| Newsgroups | gmane.comp.gnome.evolution.patches |
|---|---|
| Message-ID | <[email protected]> |
hi, The attached patch sets the meeting time selector background (Free/Busy) to white and the proposed meeting time region to gray. This is in response to feedback received from multiple users that the current color scheme is not very intuitive. Proposing the patch for HEAD and if this is received well, I intend to commit this on the Evolution 2.6 stable branch after obtaining the necessary approvals for the freeze break. Thanks, Harish _______________________________________________ Evolution-patches mailing list [email protected] http://mail.gnome.org/mailman/listinfo/evolution-patches
free-busy.diff
(text/x-patch, 1.9 KB)
Index: ChangeLog =================================================================== RCS file: /cvs/gnome/evolution/calendar/ChangeLog,v retrieving revision 1.3011.2.12 diff -u -p -r1.3011.2.12 ChangeLog --- ChangeLog 6 Apr 2006 08:52:52 -0000 1.3011.2.12 +++ ChangeLog 6 Apr 2006 09:30:16 -0000 @@ -1,3 +1,10 @@ +2006-04-06 Harish Krishnaswamy <[email protected]> + + * gui/e-meeting-time-sel.c: (e_meeting_time_selector_construct): + Set the meeting time selector background (Free/Busy)to white and + the proposed meeting time region to gray. Upping the intuitiveness + of the interface. + 2006-04-05 Chenthill Palanisamy <[email protected]> * gui/e-day-view.c: (e_day_view_on_main_canvas_motion): Index: gui/e-meeting-time-sel.c =================================================================== RCS file: /cvs/gnome/evolution/calendar/gui/e-meeting-time-sel.c,v retrieving revision 1.74 diff -u -p -r1.74 e-meeting-time-sel.c --- gui/e-meeting-time-sel.c 8 Feb 2006 13:06:02 -0000 1.74 +++ gui/e-meeting-time-sel.c 6 Apr 2006 09:30:18 -0000 @@ -651,12 +651,12 @@ e_meeting_time_selector_construct (EMeet /* Allocate the colors. */ colormap = gtk_widget_get_colormap (GTK_WIDGET (mts)); - e_meeting_time_selector_alloc_named_color (mts, "gray75", &mts->bg_color); + e_meeting_time_selector_alloc_named_color (mts, "white", &mts->bg_color); e_meeting_time_selector_alloc_named_color (mts, "gray50", &mts->all_attendees_bg_color); gdk_color_black (colormap, &mts->grid_color); gdk_color_white (colormap, &mts->grid_shadow_color); e_meeting_time_selector_alloc_named_color (mts, "gray50", &mts->grid_unused_color); - gdk_color_white (colormap, &mts->meeting_time_bg_color); + e_meeting_time_selector_alloc_named_color (mts, "gray50", &mts->meeting_time_bg_color); gdk_color_white (colormap, &mts->stipple_bg_color); gdk_color_white (colormap, &mts->attendee_list_bg_color);