BUTTONS TOO SMALL especially sliders

thewookieway

New Member
WHY are the buttons so dang small, it's hard to grab even with mouse on reduced DPI. particularly volume sliders. This makes it difficult to adjust settings precisely how you want them. I can't think of any logical reason you did this, except "programmer doesn't notice because he has really big screen and great eye/hand coordination" .. I'm getting older, and possibly disabled with bad eyes. it's a struggle to just USE OBS daily when i stream because of this.
 

nekoshang

New Member
edit the .qss file for the theme you are using

themes are found here:
<PATH TO OBS>\data\obs-studio\themes

search for QSlider
make sure these values exist (as well as or instead of the existing values that are already there):
Code:
QSlider {
    min-height: 20px;
    min-width: 20px;
}

QSlider::groove:horizontal {
    height: 4px;
}

QSlider::handle:horizontal {
    width: 20px;
    height: 8px;
    margin: -10px 0; 
}

QSlider::groove:vertical {
    width: 4px;
}

QSlider::handle:vertical {
    width: 8px;
    height: 20px;
    margin: 0 -10px;
}

or check out the theme i uploaded with these settings, here:
 
Top