* [PATCH] hob/recipeselectionpage: recipes should not be shown brought in by themselves
@ 2012-09-27 14:12 Cristiana Voicu
2012-09-27 15:44 ` Richard Purdie
0 siblings, 1 reply; 2+ messages in thread
From: Cristiana Voicu @ 2012-09-27 14:12 UTC (permalink / raw)
To: bitbake-devel
[YOCTO #3107]
Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
---
bitbake/lib/bb/ui/crumbs/hoblistmodel.py | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
index 15894d3..fe58adf 100644
--- a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
+++ b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
@@ -672,6 +672,10 @@ class RecipeListModel(gtk.ListStore):
self[dep_path][self.COL_BINB] = ', '.join(dep_bin).lstrip(', ')
elif not dep_included:
self.include_item(dep_path, binb=item_name, image_contents=image_contents)
+ dep_bin = self[item_path][self.COL_BINB].split(', ')
+ if self[item_path][self.COL_NAME] in dep_bin:
+ dep_bin.remove(self[item_path][self.COL_NAME])
+ self[item_path][self.COL_BINB] = ', '.join(dep_bin).lstrip(', ')
def exclude_item(self, item_path):
if not self.path_included(item_path):
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] hob/recipeselectionpage: recipes should not be shown brought in by themselves
2012-09-27 14:12 [PATCH] hob/recipeselectionpage: recipes should not be shown brought in by themselves Cristiana Voicu
@ 2012-09-27 15:44 ` Richard Purdie
0 siblings, 0 replies; 2+ messages in thread
From: Richard Purdie @ 2012-09-27 15:44 UTC (permalink / raw)
To: Cristiana Voicu; +Cc: bitbake-devel
On Thu, 2012-09-27 at 17:12 +0300, Cristiana Voicu wrote:
> [YOCTO #3107]
> Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
> ---
> bitbake/lib/bb/ui/crumbs/hoblistmodel.py | 4 ++++
> 1 file changed, 4 insertions(+)
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-09-27 15:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-27 14:12 [PATCH] hob/recipeselectionpage: recipes should not be shown brought in by themselves Cristiana Voicu
2012-09-27 15:44 ` Richard Purdie
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.