From a6c8cdec0085877a64229a441d179b2632ed7504 Mon Sep 17 00:00:00 2001 From: SuslikV Date: Mon, 17 Sep 2018 14:41:46 +0200 Subject: [PATCH] UI: Fix scrollbar misalignment for Acri theme Fixes an issue with horizontal scrollbar when it was hard to drag it by mouse in Acri theme, because active area was thinner than the visible scroll handle. --- UI/data/themes/Acri.qss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/data/themes/Acri.qss b/UI/data/themes/Acri.qss index e0e94cecd..33c627802 100644 --- a/UI/data/themes/Acri.qss +++ b/UI/data/themes/Acri.qss @@ -283,7 +283,7 @@ QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical, QScrollBar::add- QScrollBar:horizontal { background-color: transparent; - height: 10px; + height: 20px; margin-left: -3px; margin-right: -3px; } @@ -291,7 +291,7 @@ QScrollBar:horizontal { QScrollBar::handle:horizontal { background-color: #2f2f2f; min-width: 20px; - margin: 0px 0px -3px; + margin: 3px 0px; border-radius: 0px; border: none; }