diff options
author | Jürg Billeter <j@bitron.ch> | 2004-07-12 18:29:47 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-07-12 18:29:47 +0800 |
commit | f70356873fd0323ec43aec7e1eb5e6a51c0e6e97 (patch) | |
tree | bac8ff3dccb3651bea5cfce49e5ebc21987fb378 /calendar | |
parent | d64847d599107e9b3dc1224b064045e6e2b54968 (diff) | |
download | gsoc2013-evolution-f70356873fd0323ec43aec7e1eb5e6a51c0e6e97.tar.gz gsoc2013-evolution-f70356873fd0323ec43aec7e1eb5e6a51c0e6e97.tar.zst gsoc2013-evolution-f70356873fd0323ec43aec7e1eb5e6a51c0e6e97.zip |
busy should be opaque, not transparent
2004-07-11 Jürg Billeter <j@bitron.ch>
* gui/dialogs/event-page.c (event_page_fill_component):
busy should be opaque, not transparent
svn path=/trunk/; revision=26619
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 8be279405a..564818f693 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2004-07-11 Jürg Billeter <j@bitron.ch> + + * gui/dialogs/event-page.c (event_page_fill_component): + busy should be opaque, not transparent + 2004-07-09 Rodrigo Moya <rodrigo@novell.com> Revert my patches from July 5th and 6th. diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c index 018ecd3a14..af7768e69f 100644 --- a/calendar/gui/dialogs/event-page.c +++ b/calendar/gui/dialogs/event-page.c @@ -926,7 +926,7 @@ event_page_fill_component (CompEditorPage *page, ECalComponent *comp) /* Show Time As (Transparency) */ busy = e_dialog_toggle_get (priv->show_time_as_busy); - e_cal_component_set_transparency (comp, busy ? E_CAL_COMPONENT_TRANSP_TRANSPARENT : E_CAL_COMPONENT_TRANSP_OPAQUE); + e_cal_component_set_transparency (comp, busy ? E_CAL_COMPONENT_TRANSP_OPAQUE : E_CAL_COMPONENT_TRANSP_TRANSPARENT); /* Alarm */ e_cal_component_remove_all_alarms (comp); |