aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@helixcode.com>2000-12-25 16:36:29 +0800
committerMiguel de Icaza <miguel@src.gnome.org>2000-12-25 16:36:29 +0800
commit4071a11158fa0feb3e804f7cd327cdb0dfc21872 (patch)
treec4ebb37ab69660d4da9c386afbf0852f0dff3f4b
parent72dfe1e5145c92dd60e8c1c8219689d64cc47184 (diff)
downloadgsoc2013-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
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/gui/e-day-view.c4
2 files changed, 10 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 2992aca0f0..6861c3d698 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,9 @@
+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.
+
2000-12-22 JP Rosevear <jpr@helixcode.com>
* gui/dialogs/delete-comp.c (delete_component_dialog): Clean up
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",