Skip to content
Snippets Groups Projects
Commit 9ec09ea2 authored by Pixtxa's avatar Pixtxa
Browse files

Bugfix for "right_scroll=0" in config

parent 356caf81
No related branches found
No related tags found
1 merge request!433Simple Menu
......@@ -222,6 +222,9 @@ class Menu:
right_scroll_str = config.get_string("right_scroll")
if right_scroll_str.lower() in ["true", "1"]:
right_buttons_scroll = True
if right_scroll_str.lower() in ["false", "0"]:
right_buttons_scroll = False
except OSError:
right_buttons_scroll = self.right_buttons_scroll
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment