[oe-commits] [bitbake] 07/18: toaster: tasks Remove recipe version from defaults

git at git.openembedded.org git at git.openembedded.org
Tue Sep 6 09:37:42 UTC 2016


rpurdie pushed a commit to branch master-next
in repository bitbake.

commit 249dd31fcaabbec32fdee30b0c84be90d4f92430
Author: Belen Barros Pena <belen.barros.pena at linux.intel.com>
AuthorDate: Mon Sep 5 15:29:22 2016 +0100

    toaster: tasks Remove recipe version from defaults
    
    The 'Recipe version' column should not be part of the set of columns
    shown by default in the tasks table. Set the hidden property for that
    column to 'True' so that it doesn't show when you load that table
    for the first time.
    
    [YOCTO #10179]
    
    Signed-off-by: Belen Barros Pena <belen.barros.pena at linux.intel.com>
    Signed-off-by: Michael Wood <michael.g.wood at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 lib/toaster/toastergui/buildtables.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/toaster/toastergui/buildtables.py b/lib/toaster/toastergui/buildtables.py
index b6485e6..dd0a690 100644
--- a/lib/toaster/toastergui/buildtables.py
+++ b/lib/toaster/toastergui/buildtables.py
@@ -482,7 +482,8 @@ class BuildTasksTable(BuildTablesMixin):
                         orderable=True)
 
         self.add_column(title="Recipe version",
-                        field_name='recipe__version')
+                        field_name='recipe__version',
+                        hidden=True)
 
         self.add_column(title="Executed",
                         static_data_name="task_executed",

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list