Skip to content

Commit 4ecafe7

Browse files
committed
Fix INITIAL_LAYOUT default value
1 parent 703226e commit 4ecafe7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nextbox_ui_plugin/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
SELECT_LAYERS_LIST_EXCLUDE_DEVICE_TAGS = PLUGIN_SETTINGS.get("select_layers_list_exclude_device_tags", tuple())
141141

142142
# Defines the initial layer alignment direction on the view
143-
INITIAL_LAYOUT = PLUGIN_SETTINGS.get("INITIAL_LAYOUT", 'vertical')
143+
INITIAL_LAYOUT = PLUGIN_SETTINGS.get("INITIAL_LAYOUT", 'auto')
144144
if INITIAL_LAYOUT not in ('vertical', 'horizontal', 'auto'):
145145
INITIAL_LAYOUT = 'auto'
146146

0 commit comments

Comments
 (0)