From b913acd5ef0106f3cf09a29f4b715035c60f6031 Mon Sep 17 00:00:00 2001 From: Denis Fomin Date: Sat, 5 Jan 2013 22:10:57 +0400 Subject: [PATCH] correctly set_type_hint --- src/dialogs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dialogs.py b/src/dialogs.py index bff35fba0..14ea1767d 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -2806,7 +2806,7 @@ class PopupNotificationWindow: xml = gtkgui_helpers.get_gtk_builder('popup_notification_window.ui') self.window = xml.get_object('popup_notification_window') - self.set_type_hint(Gdk.WindowTypeHint.TOOLTIP) + self.window.set_type_hint(Gdk.WindowTypeHint.TOOLTIP) close_button = xml.get_object('close_button') event_type_label = xml.get_object('event_type_label') event_description_label = xml.get_object('event_description_label')