Fix getting the scrollbar option

This commit is contained in:
Florian Bruhin 2017-06-19 14:39:30 +02:00
parent d9f1c4595e
commit d4cbd4ace4

View File

@ -239,7 +239,7 @@ def get_user_stylesheet():
with open(filename, 'r', encoding='utf-8') as f:
css = f.read()
if config.val.scrolling.bar:
if not config.val.scrolling.bar:
css += '\nhtml > ::-webkit-scrollbar { width: 0px; height: 0px; }'
return css