summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@linux.intel.com>2014-09-29 14:13:11 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-10-30 13:39:48 +0000
commitceb113971a18a3b6b2cd10ab629beac81f335ece (patch)
treef67eaa5a32a072e4729947db921afe6a7c206289 /bitbake
parent719f5e41b3bea41dee001540fcdb55d5d34d509f (diff)
downloadpoky-ceb113971a18a3b6b2cd10ab629beac81f335ece.tar.gz
bitbake: toastergui: Remove sorting from "Size over total" column
The sorting in this column is tied to the sorting by "Size". If we make both columns sortable, when you sort by one of them it also sorts the other, and the table looks as if you have sorted by 2 columns at the same time. This was fixed in YOCTO #6061, but turned up again. (Bitbake rev: acf372eb5a083451ab1507dd24e3a84380420c9a) Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/lib/toaster/toastergui/views.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/views.py b/bitbake/lib/toaster/toastergui/views.py
index ea81423d51..3fde3c9a62 100755
--- a/bitbake/lib/toaster/toastergui/views.py
+++ b/bitbake/lib/toaster/toastergui/views.py
@@ -609,8 +609,6 @@ def target_common( request, build_id, target_id, variant ):
609 tc_sizePercentage = { 609 tc_sizePercentage = {
610 'name' : 'Size over total (%)', 610 'name' : 'Size over total (%)',
611 'qhelp' : 'Proportion of the overall size represented by this package', 611 'qhelp' : 'Proportion of the overall size represented by this package',
612 'orderfield' : _get_toggle_order( request, "size" ),
613 'ordericon' : _get_toggle_order_icon( request, "size" ),
614 'clclass' : 'size_over_total', 612 'clclass' : 'size_over_total',
615 'hidden' : 1, 613 'hidden' : 1,
616 } 614 }