From ceb113971a18a3b6b2cd10ab629beac81f335ece Mon Sep 17 00:00:00 2001 From: Belen Barros Pena Date: Mon, 29 Sep 2014 14:13:11 +0100 Subject: 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 Signed-off-by: Richard Purdie --- bitbake/lib/toaster/toastergui/views.py | 2 -- 1 file changed, 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 ): tc_sizePercentage = { 'name' : 'Size over total (%)', 'qhelp' : 'Proportion of the overall size represented by this package', - 'orderfield' : _get_toggle_order( request, "size" ), - 'ordericon' : _get_toggle_order_icon( request, "size" ), 'clclass' : 'size_over_total', 'hidden' : 1, } -- cgit v1.2.3-54-g00ecf