diff options
| -rwxr-xr-x | bitbake/lib/bb/ui/crumbs/hobpages.py | 2 | ||||
| -rw-r--r-- | bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py | 6 | ||||
| -rwxr-xr-x | bitbake/lib/bb/ui/crumbs/imagedetailspage.py | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobpages.py b/bitbake/lib/bb/ui/crumbs/hobpages.py index 63ee3dd835..81edaca682 100755 --- a/bitbake/lib/bb/ui/crumbs/hobpages.py +++ b/bitbake/lib/bb/ui/crumbs/hobpages.py | |||
| @@ -84,4 +84,4 @@ class HobPage (gtk.VBox): | |||
| 84 | button = toolbar.append_element(gtk.TOOLBAR_CHILD_RADIOBUTTON, None, | 84 | button = toolbar.append_element(gtk.TOOLBAR_CHILD_RADIOBUTTON, None, |
| 85 | buttonname, tip_text, "Private text", icon, | 85 | buttonname, tip_text, "Private text", icon, |
| 86 | cb, None) | 86 | cb, None) |
| 87 | return toolbar, button | 87 | return button |
diff --git a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py index c8f7a56c49..b0c5daae4b 100644 --- a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py +++ b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py | |||
| @@ -45,19 +45,19 @@ class ImageConfigurationPage (HobPage): | |||
| 45 | self.toolbar.set_orientation(gtk.ORIENTATION_HORIZONTAL) | 45 | self.toolbar.set_orientation(gtk.ORIENTATION_HORIZONTAL) |
| 46 | self.toolbar.set_style(gtk.TOOLBAR_BOTH) | 46 | self.toolbar.set_style(gtk.TOOLBAR_BOTH) |
| 47 | 47 | ||
| 48 | _, template_button = self.append_toolbar_button(self.toolbar, | 48 | template_button = self.append_toolbar_button(self.toolbar, |
| 49 | "Template", | 49 | "Template", |
| 50 | hic.ICON_TEMPLATES_DISPLAY_FILE, | 50 | hic.ICON_TEMPLATES_DISPLAY_FILE, |
| 51 | hic.ICON_TEMPLATES_HOVER_FILE, | 51 | hic.ICON_TEMPLATES_HOVER_FILE, |
| 52 | "Load a hob building template saved before", | 52 | "Load a hob building template saved before", |
| 53 | self.template_button_clicked_cb) | 53 | self.template_button_clicked_cb) |
| 54 | _, my_images_button = self.append_toolbar_button(self.toolbar, | 54 | my_images_button = self.append_toolbar_button(self.toolbar, |
| 55 | "My images", | 55 | "My images", |
| 56 | hic.ICON_IMAGES_DISPLAY_FILE, | 56 | hic.ICON_IMAGES_DISPLAY_FILE, |
| 57 | hic.ICON_IMAGES_HOVER_FILE, | 57 | hic.ICON_IMAGES_HOVER_FILE, |
| 58 | "Open images built out previously for running or deployment", | 58 | "Open images built out previously for running or deployment", |
| 59 | self.my_images_button_clicked_cb) | 59 | self.my_images_button_clicked_cb) |
| 60 | _, settings_button = self.append_toolbar_button(self.toolbar, | 60 | settings_button = self.append_toolbar_button(self.toolbar, |
| 61 | "Settings", | 61 | "Settings", |
| 62 | hic.ICON_SETTINGS_DISPLAY_FILE, | 62 | hic.ICON_SETTINGS_DISPLAY_FILE, |
| 63 | hic.ICON_SETTINGS_HOVER_FILE, | 63 | hic.ICON_SETTINGS_HOVER_FILE, |
diff --git a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py index 30c25aa5d9..b7663d8443 100755 --- a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py +++ b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py | |||
| @@ -122,7 +122,7 @@ class ImageDetailsPage (HobPage): | |||
| 122 | self.toolbar.set_orientation(gtk.ORIENTATION_HORIZONTAL) | 122 | self.toolbar.set_orientation(gtk.ORIENTATION_HORIZONTAL) |
| 123 | self.toolbar.set_style(gtk.TOOLBAR_BOTH) | 123 | self.toolbar.set_style(gtk.TOOLBAR_BOTH) |
| 124 | 124 | ||
| 125 | _, my_images_button = self.append_toolbar_button(self.toolbar, | 125 | my_images_button = self.append_toolbar_button(self.toolbar, |
| 126 | "My images", | 126 | "My images", |
| 127 | hic.ICON_IMAGES_DISPLAY_FILE, | 127 | hic.ICON_IMAGES_DISPLAY_FILE, |
| 128 | hic.ICON_IMAGES_HOVER_FILE, | 128 | hic.ICON_IMAGES_HOVER_FILE, |
