7333: Reduce number of columns in LDS temple selector
This commit is contained in:
parent
579f17a687
commit
a6e4bf9cc5
@ -567,12 +567,11 @@ class MonitoredStrMenu(object):
|
|||||||
self.obj = obj
|
self.obj = obj
|
||||||
self.model = Gtk.ListStore(GObject.TYPE_STRING)
|
self.model = Gtk.ListStore(GObject.TYPE_STRING)
|
||||||
|
|
||||||
|
# Make sure that the menu is visible on small screen devices.
|
||||||
|
# Some LDS temples were not visible on a 4 or 5 column layout.
|
||||||
|
# See bug #7333
|
||||||
if len(mapping) > 20:
|
if len(mapping) > 20:
|
||||||
self.obj.set_wrap_width(3)
|
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=[''])
|
self.model.append(row=[''])
|
||||||
index = 0
|
index = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user