Set min-height for Scrollbar handle in RideNavigator

When there are lots of activities the handle becomes too small to be useful,
so min-height is set to the same value as width to avoid this.
Fixes #2756
This commit is contained in:
Ale Martinez
2019-09-23 14:35:43 -03:00
parent 29db9ebde2
commit be43cde4e1

View File

@@ -172,17 +172,17 @@ TabView::ourStyleSheet()
"}"
"QScrollBar::handle:vertical:enabled:hover {"
" background: lightGray; "
" min-height: 0px;"
" min-height: %4px;"
""
"}"
"QScrollBar::handle:vertical:enabled {"
" background: darkGray; "
" min-height: 0px;"
" min-height: %4px;"
""
"}"
"QScrollBar::handle:vertical {"
" background: %1; "
" min-height: 0px;"
" min-height: %4px;"
""
"}"
"QScrollBar::sub-page:vertical { background: %1; }"