diff options
author | Belen Barros Pena <belen.barros.pena@intel.com> | 2014-02-20 02:46:25 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-17 13:59:36 +0000 |
commit | bb7776a8437f3e5ff304af7f55804d02f79f1a16 (patch) | |
tree | e22560ae32e646edf7f1905124f0994746f1e28c /bitbake | |
parent | 1f83c7fca87851a97484b68b25d0c6a88db053af (diff) | |
download | poky-bb7776a8437f3e5ff304af7f55804d02f79f1a16.tar.gz |
bitbake: toaster: Make Order column part of the minimum table
The Order column in the tasks table should be always shown and
be part of the minimum table (i.e. its checkbox should be
disabled in the Edit columns menu). Changing views.py to
make sure this is the case.
(Bitbake rev: a928e0cfb82dac0eb920913e3f9c5b45e3dcdf2f)
Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/toaster/toastergui/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py index 7f61ade9c8..bf7f2c83ea 100644 --- a/bitbake/lib/toaster/toastergui/views.py +++ b/bitbake/lib/toaster/toastergui/views.py | |||
@@ -514,7 +514,7 @@ def tasks_common(request, build_id, variant): | |||
514 | 'clclass': 'order', 'hidden' : 1, | 514 | 'clclass': 'order', 'hidden' : 1, |
515 | 'orderfield':_get_toggle_order(request, "order"), | 515 | 'orderfield':_get_toggle_order(request, "order"), |
516 | 'ordericon':_get_toggle_order_icon(request, "order")} | 516 | 'ordericon':_get_toggle_order_icon(request, "order")} |
517 | if 'tasks' == variant: tc_order['hidden']='0'; | 517 | if 'tasks' == variant: tc_order['hidden']='0'; del tc_order['clclass'] |
518 | tc_recipe={ | 518 | tc_recipe={ |
519 | 'name':'Recipe', | 519 | 'name':'Recipe', |
520 | 'qhelp':'The name of the recipe to which each task applies', | 520 | 'qhelp':'The name of the recipe to which each task applies', |