From a570345e9f390f2ab11f6dbb518e999bd122096a Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Wed, 24 Jul 2013 19:11:37 +0000 Subject: [PATCH] show more LDS temples on the screen svn: r22734 --- src/gui/widgets/monitoredwidgets.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/widgets/monitoredwidgets.py b/src/gui/widgets/monitoredwidgets.py index 479e15003..c8e400ea3 100644 --- a/src/gui/widgets/monitoredwidgets.py +++ b/src/gui/widgets/monitoredwidgets.py @@ -554,6 +554,10 @@ class MonitoredStrMenu(object): if len(mapping) > 20: self.obj.set_wrap_width(3) + if len(mapping) > 40: + self.obj.set_wrap_width(4) + if len(mapping) > 100: # currently, there are 153 entries in lds.xml + self.obj.set_wrap_width(5) self.model.append(row=['']) index = 0