diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-07-20 15:18:13 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-07-20 15:18:13 +0800 |
commit | 281a1b94af981d5cb9a69d3b6e2e616e031f9a73 (patch) | |
tree | 100999e33fb59db71b0f765bd8296e0a7c9ecf8a /calendar/gui/e-meeting-time-sel.c | |
parent | 27023cbe18cffd145e2fa9e21f3ef79cab076be5 (diff) | |
download | gsoc2013-evolution-281a1b94af981d5cb9a69d3b6e2e616e031f9a73.tar.gz gsoc2013-evolution-281a1b94af981d5cb9a69d3b6e2e616e031f9a73.tar.zst gsoc2013-evolution-281a1b94af981d5cb9a69d3b6e2e616e031f9a73.zip |
Added cairo rendering for free busy view by Rajeev.
svn path=/trunk/; revision=32357
Diffstat (limited to 'calendar/gui/e-meeting-time-sel.c')
-rw-r--r-- | calendar/gui/e-meeting-time-sel.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/calendar/gui/e-meeting-time-sel.c b/calendar/gui/e-meeting-time-sel.c index 0cfadf4b5a..6b683e25db 100644 --- a/calendar/gui/e-meeting-time-sel.c +++ b/calendar/gui/e-meeting-time-sel.c @@ -652,18 +652,18 @@ e_meeting_time_selector_construct (EMeetingTimeSelector * mts, EMeetingStore *em /* 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, "gray50", &mts->all_attendees_bg_color); + e_meeting_time_selector_alloc_named_color (mts, "snow", &mts->bg_color); + e_meeting_time_selector_alloc_named_color (mts, "snow3", &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); gdk_color_white (colormap, &mts->stipple_bg_color); gdk_color_white (colormap, &mts->attendee_list_bg_color); - e_meeting_time_selector_alloc_named_color (mts, "LightSkyBlue2", &mts->busy_colors[E_MEETING_FREE_BUSY_TENTATIVE]); + e_meeting_time_selector_alloc_named_color (mts, "snow4", &mts->meeting_time_bg_color); + e_meeting_time_selector_alloc_named_color (mts, "yellow", &mts->busy_colors[E_MEETING_FREE_BUSY_TENTATIVE]); e_meeting_time_selector_alloc_named_color (mts, "blue", &mts->busy_colors[E_MEETING_FREE_BUSY_BUSY]); - e_meeting_time_selector_alloc_named_color (mts, "HotPink3", &mts->busy_colors[E_MEETING_FREE_BUSY_OUT_OF_OFFICE]); + e_meeting_time_selector_alloc_named_color (mts, "orange4", &mts->busy_colors[E_MEETING_FREE_BUSY_OUT_OF_OFFICE]); /* Create the stipple, for attendees with no data. */ mts->stipple = gdk_bitmap_create_from_data (NULL, (gchar*)stipple_bits, |