diff options
author | Joshua Lock <josh@linux.intel.com> | 2012-04-12 19:43:12 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-20 09:24:25 +0100 |
commit | 44a40f7a569ac583a949a088f14f97f66b19af4f (patch) | |
tree | 582da5d407e3e54053c11e4318bff681815197d2 /bitbake/lib/bb/ui/crumbs/packageselectionpage.py | |
parent | 881b81f2661f264795bfc9d10895a0675220369f (diff) | |
download | poky-44a40f7a569ac583a949a088f14f97f66b19af4f.tar.gz |
lib/bb/ui/crumbs/: replace custom HobNotebook
The custom HobNotebook widget was implemented to address perceived
deficiencies in the gtk.Notebook API.
Recent inspection reveals that the API is capable of all that Hob
requires of it and therefore maintaining a custom class to provide
similar functionality does not make sense.
Addresses [YOCTO #2276]
(Bitbake rev: e683caa9863bbb52480346669806f22173629a5e)
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/packageselectionpage.py')
-rwxr-xr-x | bitbake/lib/bb/ui/crumbs/packageselectionpage.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py index 238e2f9771..de9bb73ea4 100755 --- a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py +++ b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py | |||
@@ -129,8 +129,7 @@ class PackageSelectionPage (HobPage): | |||
129 | if page['name'] == "Included": | 129 | if page['name'] == "Included": |
130 | tab.connect("button-release-event", self.button_click_cb) | 130 | tab.connect("button-release-event", self.button_click_cb) |
131 | tab.connect("cell-fadeinout-stopped", self.after_fadeout_checkin_include) | 131 | tab.connect("cell-fadeinout-stopped", self.after_fadeout_checkin_include) |
132 | label = gtk.Label(page['name']) | 132 | self.ins.append_page(tab, page['name']) |
133 | self.ins.append_page(tab, label) | ||
134 | self.tables.append(tab) | 133 | self.tables.append(tab) |
135 | 134 | ||
136 | self.ins.set_entry("Search packages:") | 135 | self.ins.set_entry("Search packages:") |