From df64e7f884383068c25fca63126167d78944e731 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Fri, 6 Apr 2012 16:02:22 -0700 Subject: lib/bb/ui/crumbs/[recipe|package]selectionpage: fixed width Included col Set the expand property on all columns other than the 'Included' column so that the included column remains at the max size set. (Bitbake rev: e1406d75c0643a2e65bb61649958e05e730fb332) Signed-off-by: Joshua Lock Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/hobwidget.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bitbake/lib/bb/ui/crumbs/hobwidget.py') diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py index 006307b3bb..96894bf01c 100644 --- a/bitbake/lib/bb/ui/crumbs/hobwidget.py +++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py @@ -127,6 +127,8 @@ class HobViewTable (gtk.VBox): col.set_min_width(column['col_min']) if 'col_max' in column.keys(): col.set_max_width(column['col_max']) + if 'expand' in column.keys(): + col.set_expand(True) self.table_tree.append_column(col) if (not 'col_style' in column.keys()) or column['col_style'] == 'text': -- cgit v1.2.3-54-g00ecf