diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/persistenttooltip.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/persistenttooltip.py b/bitbake/lib/bb/ui/crumbs/persistenttooltip.py index e18406221e..69e059b204 100644 --- a/bitbake/lib/bb/ui/crumbs/persistenttooltip.py +++ b/bitbake/lib/bb/ui/crumbs/persistenttooltip.py | |||
@@ -73,6 +73,9 @@ class PersistentTooltip(gtk.Window): | |||
73 | self.set_position(gtk.WIN_POS_MOUSE) | 73 | self.set_position(gtk.WIN_POS_MOUSE) |
74 | self.set_opacity(0.95) | 74 | self.set_opacity(0.95) |
75 | 75 | ||
76 | # Ensure a reasonable minimum size | ||
77 | self.set_geometry_hints(self, 100, 50) | ||
78 | |||
76 | # Draw our label and close buttons | 79 | # Draw our label and close buttons |
77 | hbox = gtk.HBox(False, 0) | 80 | hbox = gtk.HBox(False, 0) |
78 | hbox.show() | 81 | hbox.show() |