diff options
Diffstat (limited to 'bitbake')
| -rw-r--r-- | bitbake/lib/bb/ui/crumbs/hig.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py index e175a2ab03..28b7eefda4 100644 --- a/bitbake/lib/bb/ui/crumbs/hig.py +++ b/bitbake/lib/bb/ui/crumbs/hig.py | |||
| @@ -94,13 +94,13 @@ class CrumbsMessageDialog(CrumbsDialog): | |||
| 94 | # | 94 | # |
| 95 | # Brought-in-by Dialog | 95 | # Brought-in-by Dialog |
| 96 | # | 96 | # |
| 97 | class BinbDialog(gtk.Dialog): | 97 | class BinbDialog(CrumbsDialog): |
| 98 | """ | 98 | """ |
| 99 | A dialog widget to show "brought in by" info when a recipe/package is clicked. | 99 | A dialog widget to show "brought in by" info when a recipe/package is clicked. |
| 100 | """ | 100 | """ |
| 101 | 101 | ||
| 102 | def __init__(self, title, content, parent=None): | 102 | def __init__(self, title, content, parent=None): |
| 103 | super(BinbDialog, self).__init__(title, parent, gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT, None) | 103 | super(BinbDialog, self).__init__(title, parent, gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT, ("Close", gtk.RESPONSE_CLOSE)) |
| 104 | 104 | ||
| 105 | self.set_position(gtk.WIN_POS_MOUSE) | 105 | self.set_position(gtk.WIN_POS_MOUSE) |
| 106 | self.set_resizable(False) | 106 | self.set_resizable(False) |
