summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/packageselectionpage.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/packageselectionpage.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/packageselectionpage.py')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/packageselectionpage.py23
1 files changed, 14 insertions, 9 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
index 78963f6914..b1a199c680 100755
--- a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
+++ b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
@@ -41,25 +41,28 @@ class PackageSelectionPage (HobPage):
41 'col_id' : PackageListModel.COL_NAME, 41 'col_id' : PackageListModel.COL_NAME,
42 'col_style': 'text', 42 'col_style': 'text',
43 'col_min' : 100, 43 'col_min' : 100,
44 'col_max' : 300 44 'col_max' : 300,
45 'expand' : 'True'
45 }, { 46 }, {
46 'col_name' : 'Brought in by', 47 'col_name' : 'Brought in by',
47 'col_id' : PackageListModel.COL_BINB, 48 'col_id' : PackageListModel.COL_BINB,
48 'col_style': 'binb', 49 'col_style': 'binb',
49 'col_min' : 100, 50 'col_min' : 100,
50 'col_max' : 350 51 'col_max' : 350,
52 'expand' : 'True'
51 }, { 53 }, {
52 'col_name' : 'Size', 54 'col_name' : 'Size',
53 'col_id' : PackageListModel.COL_SIZE, 55 'col_id' : PackageListModel.COL_SIZE,
54 'col_style': 'text', 56 'col_style': 'text',
55 'col_min' : 100, 57 'col_min' : 100,
56 'col_max' : 300 58 'col_max' : 300,
59 'expand' : 'True'
57 }, { 60 }, {
58 'col_name' : 'Included', 61 'col_name' : 'Included',
59 'col_id' : PackageListModel.COL_INC, 62 'col_id' : PackageListModel.COL_INC,
60 'col_style': 'check toggle', 63 'col_style': 'check toggle',
61 'col_min' : 50, 64 'col_min' : 100,
62 'col_max' : 50 65 'col_max' : 100
63 }] 66 }]
64 }, { 67 }, {
65 'name' : 'All packages', 68 'name' : 'All packages',
@@ -69,19 +72,21 @@ class PackageSelectionPage (HobPage):
69 'col_id' : PackageListModel.COL_NAME, 72 'col_id' : PackageListModel.COL_NAME,
70 'col_style': 'text', 73 'col_style': 'text',
71 'col_min' : 100, 74 'col_min' : 100,
72 'col_max' : 400 75 'col_max' : 400,
76 'expand' : 'True'
73 }, { 77 }, {
74 'col_name' : 'Size', 78 'col_name' : 'Size',
75 'col_id' : PackageListModel.COL_SIZE, 79 'col_id' : PackageListModel.COL_SIZE,
76 'col_style': 'text', 80 'col_style': 'text',
77 'col_min' : 100, 81 'col_min' : 100,
78 'col_max' : 500 82 'col_max' : 500,
83 'expand' : 'True'
79 }, { 84 }, {
80 'col_name' : 'Included', 85 'col_name' : 'Included',
81 'col_id' : PackageListModel.COL_INC, 86 'col_id' : PackageListModel.COL_INC,
82 'col_style': 'check toggle', 87 'col_style': 'check toggle',
83 'col_min' : 50, 88 'col_min' : 100,
84 'col_max' : 50 89 'col_max' : 100
85 }] 90 }]
86 } 91 }
87 ] 92 ]