1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-25 04:02:42 +01:00

Qt: make some scrollbars thicker.

How are we supposed to grab them if they are so tiny?
This commit is contained in:
Megamouse 2021-03-17 00:39:25 +01:00
parent 8fcebebae3
commit 6cc5428d5e
3 changed files with 6 additions and 6 deletions

View File

@ -159,12 +159,12 @@ QCheckBox::indicator:disabled {
/* Scrollbars */ /* Scrollbars */
QScrollBar { QScrollBar {
width: 5px; width: 10px;
background: #23262d; background: #23262d;
} }
QTableView QScrollBar { QTableView QScrollBar {
width: 3px; width: 10px;
height: 3px; height: 3px;
} }

View File

@ -189,11 +189,11 @@ QSlider#sizeSlider::handle:hover {
/* Scrollbars */ /* Scrollbars */
QScrollBar { QScrollBar {
width: 5px; width: 10px;
} }
QTableView QScrollBar { QTableView QScrollBar {
width: 3px; width: 10px;
height: 3px; height: 3px;
} }

View File

@ -193,7 +193,7 @@ QSlider#sizeSlider::handle:hover {
/* Scrollbars */ /* Scrollbars */
QScrollBar { QScrollBar {
width: 5px; width: 10px;
} }
QScrollArea { QScrollArea {
@ -201,7 +201,7 @@ QScrollArea {
} }
QTableView QScrollBar { QTableView QScrollBar {
width: 3px; width: 10px;
height: 3px; height: 3px;
} }