diff options
author | Elliot Smith <elliot.smith@intel.com> | 2016-07-21 18:58:38 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-26 08:10:36 +0100 |
commit | bd2cce00de46339d89808bbb4b4aaa2614386264 (patch) | |
tree | 9589d5c5664dab5f6a9e059ba6128c23267e7365 /bitbake/lib/toaster/toastergui | |
parent | 83ccef335cf31395a8c6118a1631dc4d17894b76 (diff) | |
download | poky-bd2cce00de46339d89808bbb4b4aaa2614386264.tar.gz |
bitbake: toaster: set non-hideable columns for build tasks table
The task, recipe and order columns in the build tasks table
should not be hideable. If they are, it's possible for the
table to have all of its columns hidden so that it no longer
displays.
Set the hideable property to prevent these columns from being
hidden.
[YOCTO #9833]
(Bitbake rev: dc1781e3783724823fd6b0c2d65f6b2771e8d0be)
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')
-rw-r--r-- | bitbake/lib/toaster/toastergui/buildtables.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/buildtables.py b/bitbake/lib/toaster/toastergui/buildtables.py index f3d7236ae6..f845c66c66 100644 --- a/bitbake/lib/toaster/toastergui/buildtables.py +++ b/bitbake/lib/toaster/toastergui/buildtables.py | |||
@@ -431,17 +431,20 @@ class BuildTasksTable(BuildTablesMixin): | |||
431 | self.add_column(title="Order", | 431 | self.add_column(title="Order", |
432 | static_data_name="order", | 432 | static_data_name="order", |
433 | static_data_template='{{data.order}}', | 433 | static_data_template='{{data.order}}', |
434 | hideable=False, | ||
434 | orderable=True) | 435 | orderable=True) |
435 | 436 | ||
436 | self.add_column(title="Task", | 437 | self.add_column(title="Task", |
437 | static_data_name="task_name", | 438 | static_data_name="task_name", |
438 | static_data_template=task_link_tmpl( | 439 | static_data_template=task_link_tmpl( |
439 | "{{data.task_name}}"), | 440 | "{{data.task_name}}"), |
441 | hideable=False, | ||
440 | orderable=True) | 442 | orderable=True) |
441 | 443 | ||
442 | self.add_column(title="Recipe", | 444 | self.add_column(title="Recipe", |
443 | static_data_name='recipe__name', | 445 | static_data_name='recipe__name', |
444 | static_data_template=recipe_name_tmpl, | 446 | static_data_template=recipe_name_tmpl, |
447 | hideable=False, | ||
445 | orderable=True) | 448 | orderable=True) |
446 | 449 | ||
447 | self.add_column(title="Recipe version", | 450 | self.add_column(title="Recipe version", |