summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hobwidget.py
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2012-04-06 16:02:22 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-11 00:04:42 +0100
commitdf64e7f884383068c25fca63126167d78944e731 (patch)
tree12ac15ec1b8478b2245b93dc07fce6457824464f /bitbake/lib/bb/ui/crumbs/hobwidget.py
parent4cf1aa5ae467f7f16ab7f641319bf2404e666dd0 (diff)
downloadpoky-df64e7f884383068c25fca63126167d78944e731.tar.gz
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 <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hobwidget.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobwidget.py2
1 files changed, 2 insertions, 0 deletions
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):
127 col.set_min_width(column['col_min']) 127 col.set_min_width(column['col_min'])
128 if 'col_max' in column.keys(): 128 if 'col_max' in column.keys():
129 col.set_max_width(column['col_max']) 129 col.set_max_width(column['col_max'])
130 if 'expand' in column.keys():
131 col.set_expand(True)
130 self.table_tree.append_column(col) 132 self.table_tree.append_column(col)
131 133
132 if (not 'col_style' in column.keys()) or column['col_style'] == 'text': 134 if (not 'col_style' in column.keys()) or column['col_style'] == 'text':