Skip to content

Commit

Permalink
win32: always show the scrollbars like we do on macOS. Fixes #2717
Browse files Browse the repository at this point in the history
The hover scrollbars aren't common on Windows, so disable them by default.
They can be reenabled in the advanced settings plugin if needed.
  • Loading branch information
lazka committed Jan 15, 2018
1 parent 8919c3d commit ae4cc13
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions quodlibet/quodlibet/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from . import const
from quodlibet.util.config import Config, Error
from quodlibet.util import print_d, print_w
from quodlibet.util import is_osx
from quodlibet.util import is_osx, is_windows
from quodlibet.compat import PY2, iteritems, text_type

# Some plugins can be enabled on first install
Expand Down Expand Up @@ -216,7 +216,8 @@ def _config_text(text):
"datecolumn_timestamp_format": "",

# scrollbar does not fade out when inactive
"scrollbar_always_visible": "true" if is_osx() else "false",
"scrollbar_always_visible":
"true" if (is_osx() or is_windows()) else "false",
},

"rename": {
Expand Down

0 comments on commit ae4cc13

Please sign in to comment.