aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/e-calendar-view.c1
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 558d9097df..a9772b73af 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,10 @@
+2008-04-25 Danny Baumann <dannybaumann@web.de>
+
+ ** Fix for bug #529893
+
+ * gui/e-calendar-view.c: (e_calendar_view_get_tooltips):
+ Properly set type hint on tooltip window.
+
2008-04-18 Milan Crha <mcrha@redhat.com>
** Fix for bug #509923
diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c
index 11a509aebe..2d35593103 100644
--- a/calendar/gui/e-calendar-view.c
+++ b/calendar/gui/e-calendar-view.c
@@ -2298,6 +2298,7 @@ e_calendar_view_get_tooltips (ECalendarViewEventData *data)
frame = gtk_frame_new (NULL);
gtk_frame_set_shadow_type ((GtkFrame *)frame, GTK_SHADOW_IN);
+ gtk_window_set_type_hint (GTK_WINDOW (pevent->tooltip), GDK_WINDOW_TYPE_HINT_TOOLTIP);
gtk_window_move ((GtkWindow *)pevent->tooltip, pevent->x +16, pevent->y+16);
gtk_container_add ((GtkContainer *)frame, box);
gtk_container_add ((GtkContainer *)pevent->tooltip, frame);