Skip to content
Snippets Groups Projects
Commit 703cc865 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

call set_title on tooltip windows to prevent GTKWarning

parent d0494ab4
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,7 @@ class BaseTooltip:
Create a popup window each time tooltip is requested
"""
self.win = gtk.Window(gtk.WINDOW_POPUP)
self.win.set_title('tooltip')
self.win.set_border_width(3)
self.win.set_resizable(False)
self.win.set_name('gtk-tooltips')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment