From 643f411f4279efd9c274f24987b9f020030190ee Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Tue, 14 Feb 2017 13:33:04 -0600 Subject: [PATCH] Tweak default grid actions a little Still trying to be smart about how/when to collapse --- tailbone/views/master.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tailbone/views/master.py b/tailbone/views/master.py index 6338f07d..5c1d795b 100644 --- a/tailbone/views/master.py +++ b/tailbone/views/master.py @@ -749,7 +749,7 @@ class MasterView(View): def get_grid_actions(self): main, more = self.get_main_actions(), self.get_more_actions() - if len(main) == 1 and len(more) == 1: + if len(more) == 1: main, more = main + more, [] return main, more