From 234e03d44de7d11aafe4dc2afe4e4e32bbfac5c2 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 6 Oct 2020 14:35:21 +1000 Subject: [PATCH] fix invisible scrollbar in nightmode vars.scss no longer contains the Qt theme definitions, so the easiest solution was to duplicate the colour in this case --- qt/aqt/theme.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qt/aqt/theme.py b/qt/aqt/theme.py index cb6c12f31..8fa2359fc 100644 --- a/qt/aqt/theme.py +++ b/qt/aqt/theme.py @@ -149,7 +149,8 @@ QScrollBar::sub-line { QTabWidget { background-color: %s; } """ % ( self.str_color("window-bg"), - colors.get("fusion-button-hover-bg"), + # fushion-button-hover-bg + "#656565", self.str_color("window-bg"), )