summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/buildtables.py
diff options
context:
space:
mode:
authorElliot Smith <elliot.smith@intel.com>2016-07-21 18:58:39 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-07-26 08:10:36 +0100
commit4357d7a296ee8d38ff2810f72da3d84e949360ed (patch)
tree3898af00a8ad66a7a0d814cd62da0a3c35c65dc4 /bitbake/lib/toaster/toastergui/buildtables.py
parentbd2cce00de46339d89808bbb4b4aaa2614386264 (diff)
downloadpoky-4357d7a296ee8d38ff2810f72da3d84e949360ed.tar.gz
bitbake: toaster: set non-hideable columns for built recipes table
None of the columns in the built recipes table are marked as not hideable, so it is possible to remove all the columns and make the table disappear. Set the recipe name and version columns as not hideable. Also rename the "Name" column to "Recipe", for consistency with the design and with other recipe tables. [YOCTO #9833] (Bitbake rev: 3abd0ac300462e6d1335018cf2d0420de7cc8b76) Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/buildtables.py')
-rw-r--r--bitbake/lib/toaster/toastergui/buildtables.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/buildtables.py b/bitbake/lib/toaster/toastergui/buildtables.py
index f845c66c66..82a8ba5378 100644
--- a/bitbake/lib/toaster/toastergui/buildtables.py
+++ b/bitbake/lib/toaster/toastergui/buildtables.py
@@ -295,13 +295,15 @@ class BuiltRecipesTable(BuildTablesMixin):
295 {% endif %}{% endwith %}{% endwith %} 295 {% endif %}{% endwith %}{% endwith %}
296 ''' 296 '''
297 297
298 self.add_column(title="Name", 298 self.add_column(title="Recipe",
299 field_name="name", 299 field_name="name",
300 static_data_name='name', 300 static_data_name='name',
301 orderable=True, 301 orderable=True,
302 hideable=False,
302 static_data_template=recipe_name_tmpl) 303 static_data_template=recipe_name_tmpl)
303 304
304 self.add_column(title="Version", 305 self.add_column(title="Version",
306 hideable=False,
305 field_name="version") 307 field_name="version")
306 308
307 self.add_column(title="Dependencies", 309 self.add_column(title="Dependencies",