diff options
author | Miguel de Icaza <miguel@helixcode.com> | 2000-12-25 16:36:29 +0800 |
---|---|---|
committer | Miguel de Icaza <miguel@src.gnome.org> | 2000-12-25 16:36:29 +0800 |
commit | 4071a11158fa0feb3e804f7cd327cdb0dfc21872 (patch) | |
tree | c4ebb37ab69660d4da9c386afbf0852f0dff3f4b /calendar/gui | |
parent | 72dfe1e5145c92dd60e8c1c8219689d64cc47184 (diff) | |
download | gsoc2013-evolution-4071a11158fa0feb3e804f7cd327cdb0dfc21872.tar gsoc2013-evolution-4071a11158fa0feb3e804f7cd327cdb0dfc21872.tar.gz gsoc2013-evolution-4071a11158fa0feb3e804f7cd327cdb0dfc21872.tar.bz2 gsoc2013-evolution-4071a11158fa0feb3e804f7cd327cdb0dfc21872.tar.lz gsoc2013-evolution-4071a11158fa0feb3e804f7cd327cdb0dfc21872.tar.xz gsoc2013-evolution-4071a11158fa0feb3e804f7cd327cdb0dfc21872.tar.zst gsoc2013-evolution-4071a11158fa0feb3e804f7cd327cdb0dfc21872.zip |
Set draw background to FALSE. (e_day_view_reshape_long_event): ditto.
2000-12-25 Miguel de Icaza <miguel@helixcode.com>
* gui/e-day-view.c (e_day_view_init): Set draw background to FALSE.
(e_day_view_reshape_long_event): ditto.
(e_day_view_reshape_day_event): ditto.
svn path=/trunk/; revision=7166
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/e-day-view.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c index 9a2bd82732..3ec8e6022a 100644 --- a/calendar/gui/e-day-view.c +++ b/calendar/gui/e-day-view.c @@ -624,6 +624,7 @@ e_day_view_init (EDayView *day_view) "clip", TRUE, "max_lines", 1, "editable", TRUE, + "draw_background", FALSE, NULL); gnome_canvas_item_hide (day_view->drag_long_event_item); @@ -731,6 +732,7 @@ e_day_view_init (EDayView *day_view) "line_wrap", TRUE, "clip", TRUE, "editable", TRUE, + "draw_background", FALSE, NULL); gnome_canvas_item_hide (day_view->drag_item); @@ -4191,6 +4193,7 @@ e_day_view_reshape_long_event (EDayView *day_view, "max_lines", 1, "editable", TRUE, "use_ellipsis", TRUE, + "draw_background", FALSE, NULL); gtk_signal_connect (GTK_OBJECT (event->canvas_item), "event", GTK_SIGNAL_FUNC (e_day_view_on_text_item_event), @@ -4548,6 +4551,7 @@ e_day_view_reshape_day_event (EDayView *day_view, "editable", TRUE, "clip", TRUE, "use_ellipsis", TRUE, + "draw_background", FALSE, NULL); gtk_signal_connect (GTK_OBJECT (event->canvas_item), "event", |