Module: check_mk
Branch: master
Commit: 1a72232a8eea51ed596c381e3dda71671cd10039
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=1a72232a8eea51…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Thu Dec 17 15:52:43 2015 +0100
Fixed vertical size of DualListChoice in Filters
---
web/plugins/visuals/filters.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/web/plugins/visuals/filters.py b/web/plugins/visuals/filters.py
index 9cb6aeb..722f98d 100644
--- a/web/plugins/visuals/filters.py
+++ b/web/plugins/visuals/filters.py
@@ -247,7 +247,7 @@ class FilterMultigroup(Filter):
return True
def valuespec(self):
- return DualListChoice(choices = all_groups(self.what), autoheight=False,
enlarge_active=True)
+ return DualListChoice(choices = all_groups(self.what), rows=4, autoheight=False,
enlarge_active=True)
def selection(self):
current = html.var(self.htmlvar, "").strip().split("|")