aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorDanny Baumann <dannybaumann@web.de>2008-04-25 21:35:38 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-04-25 21:35:38 +0800
commit015345c4982b3ae2e092f1263f6d200958d24751 (patch)
tree5d5c2246b79deef0b11c9bd125e15b1ea3a3b452 /calendar
parent7ab42c2897e3b1d62bd47550d91ec85a55b651a5 (diff)
downloadgsoc2013-evolution-015345c4982b3ae2e092f1263f6d200958d24751.tar
gsoc2013-evolution-015345c4982b3ae2e092f1263f6d200958d24751.tar.gz
gsoc2013-evolution-015345c4982b3ae2e092f1263f6d200958d24751.tar.bz2
gsoc2013-evolution-015345c4982b3ae2e092f1263f6d200958d24751.tar.lz
gsoc2013-evolution-015345c4982b3ae2e092f1263f6d200958d24751.tar.xz
gsoc2013-evolution-015345c4982b3ae2e092f1263f6d200958d24751.tar.zst
gsoc2013-evolution-015345c4982b3ae2e092f1263f6d200958d24751.zip
** Fix for bug #529893
2008-04-25 Danny Baumann <dannybaumann@web.de> ** Fix for bug #529893 * widgets/misc/e-dateedit.c (create_children): * widgets/misc/e-combo-cell-editable.c (build_popup): * widgets/misc/e-cell-date-edit.c (e_cell_date_edit_init): * widgets/table/e-table-header-item.c: (make_shaped_window_from_xpm): * widgets/table/e-cell-combo.c: (e_cell_combo_init): * widgets/table/e-cell-text.c: (ect_show_tooltip): * widgets/text/e-text.c: (_do_tooltip): * calendar/gui/e-calendar-view.c: (e_calendar_view_get_tooltips): Properly set type hints for popup windows. svn path=/trunk/; revision=35416
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);