summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2012-04-12 19:43:12 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-20 09:24:25 +0100
commit44a40f7a569ac583a949a088f14f97f66b19af4f (patch)
tree582da5d407e3e54053c11e4318bff681815197d2 /bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
parent881b81f2661f264795bfc9d10895a0675220369f (diff)
downloadpoky-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/recipeselectionpage.py')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/recipeselectionpage.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
index 6bc9c168af..7336da91c5 100755
--- a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
+++ b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
@@ -153,10 +153,7 @@ class RecipeSelectionPage (HobPage):
153 if page['name'] == "Included": 153 if page['name'] == "Included":
154 tab.connect("button-release-event", self.button_click_cb) 154 tab.connect("button-release-event", self.button_click_cb)
155 tab.connect("cell-fadeinout-stopped", self.after_fadeout_checkin_include) 155 tab.connect("cell-fadeinout-stopped", self.after_fadeout_checkin_include)
156 label = gtk.Label(page['name']) 156 self.ins.append_page(tab, page['name'], page['tooltip'])
157 label.set_selectable(False)
158 label.set_tooltip_text(page['tooltip'])
159 self.ins.append_page(tab, label)
160 self.tables.append(tab) 157 self.tables.append(tab)
161 158
162 self.ins.set_entry("Search recipes:") 159 self.ins.set_entry("Search recipes:")