diff options
author | Milan Crha <mcrha@redhat.com> | 2012-02-16 20:23:43 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-02-16 20:23:43 +0800 |
commit | 31a60da972560afbfafca98690381525da1a64be (patch) | |
tree | 7ee9e2de4f16f7197da8fda8fbcb32bf876a5385 /calendar/gui | |
parent | 3ec164d12e61102c0e3ce5271d5cb6ad7be6e4a6 (diff) | |
download | gsoc2013-evolution-31a60da972560afbfafca98690381525da1a64be.tar.gz gsoc2013-evolution-31a60da972560afbfafca98690381525da1a64be.tar.zst gsoc2013-evolution-31a60da972560afbfafca98690381525da1a64be.zip |
Bug #332043 - Free/Busy Colors Causing User Confusion
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/e-meeting-time-sel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-meeting-time-sel.c b/calendar/gui/e-meeting-time-sel.c index 9957be998d..ca5bb2c15b 100644 --- a/calendar/gui/e-meeting-time-sel.c +++ b/calendar/gui/e-meeting-time-sel.c @@ -833,9 +833,9 @@ e_meeting_time_selector_construct (EMeetingTimeSelector *mts, e_meeting_time_selector_alloc_named_color (mts, "snow4", &mts->meeting_time_bg_color); e_meeting_time_selector_alloc_named_color (mts, "snow", &mts->busy_colors[E_MEETING_FREE_BUSY_FREE]); - 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, "#a5d3ef", &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, "orange4", &mts->busy_colors[E_MEETING_FREE_BUSY_OUT_OF_OFFICE]); + e_meeting_time_selector_alloc_named_color (mts, "#ce6194", &mts->busy_colors[E_MEETING_FREE_BUSY_OUT_OF_OFFICE]); /* Connect handlers to the adjustments scroll the other items. */ scrollable = GTK_SCROLLABLE (mts->display_main); |