From patchwork Fri Apr 6 23:18:34 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel, 2/4] lib/bb/ui/crumbs/recipeselectionpage: include 'Group' in 'Included' view Date: Fri, 06 Apr 2012 23:18:34 -0000 From: Joshua Lock X-Patchwork-Id: 25287 Message-Id: To: bitbake-devel@lists.openembedded.org The 'Included' tab of the notebook should show the 'Group' a recipe belongs to, per the design. Signed-off-by: Joshua Lock --- lib/bb/ui/crumbs/recipeselectionpage.py | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/lib/bb/ui/crumbs/recipeselectionpage.py b/lib/bb/ui/crumbs/recipeselectionpage.py index 956b02d..8314449 100755 --- a/lib/bb/ui/crumbs/recipeselectionpage.py +++ b/lib/bb/ui/crumbs/recipeselectionpage.py @@ -49,6 +49,12 @@ class RecipeSelectionPage (HobPage): 'col_min' : 100, 'col_max' : 500 }, { + 'col_name' : 'Group', + 'col_id' : RecipeListModel.COL_GROUP, + 'col_style': 'text', + 'col_min' : 100, + 'col_max' : 300 + }, { 'col_name' : 'Included', 'col_id' : RecipeListModel.COL_INC, 'col_style': 'check toggle',