call set_title on tooltip windows to prevent GTKWarning
This commit is contained in:
parent
d0494ab405
commit
703cc865f7
|
@ -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')
|
||||
|
|
Loading…
Reference in New Issue