UI: Fix disabled sliders color

The disabled sliders would be the same color as the window background.
master
cg2121 2022-08-05 22:44:29 -05:00 committed by Jim
parent 7b3ae0b03c
commit f7d815b79b
5 changed files with 10 additions and 10 deletions

View File

@ -825,7 +825,7 @@ QSlider::sub-page:horizontal {
}
QSlider::sub-page:horizontal:disabled {
background-color: palette(dark);
background-color: palette(window);
border-radius: 2px;
}
@ -855,7 +855,7 @@ QSlider::add-page:vertical {
}
QSlider::add-page:vertical:disabled {
background-color: rgb(50,49,50);
background-color: palette(window);
border-radius: 2px;
}

View File

@ -815,7 +815,7 @@ QSlider::sub-page:horizontal {
}
QSlider::sub-page:horizontal:disabled {
background-color: palette(dark);
background-color: palette(window);
border-radius: 2px;
}
@ -845,7 +845,7 @@ QSlider::add-page:vertical {
}
QSlider::add-page:vertical:disabled {
background-color: rgb(50,49,50);
background-color: palette(window);
border-radius: 2px;
}

View File

@ -815,7 +815,7 @@ QSlider::sub-page:horizontal {
}
QSlider::sub-page:horizontal:disabled {
background-color: palette(dark);
background-color: palette(window);
border-radius: 2px;
}
@ -845,7 +845,7 @@ QSlider::add-page:vertical {
}
QSlider::add-page:vertical:disabled {
background-color: rgb(50,49,50);
background-color: palette(window);
border-radius: 2px;
}

View File

@ -819,7 +819,7 @@ QSlider::sub-page:horizontal {
}
QSlider::sub-page:horizontal:disabled {
background-color: palette(dark);
background-color: palette(window);
border-radius: 2px;
}
@ -849,7 +849,7 @@ QSlider::add-page:vertical {
}
QSlider::add-page:vertical:disabled {
background-color: rgb(50,49,50);
background-color: palette(window);
border-radius: 2px;
}

View File

@ -819,7 +819,7 @@ QSlider::sub-page:horizontal {
}
QSlider::sub-page:horizontal:disabled {
background-color: palette(dark);
background-color: palette(window);
border-radius: 2px;
}
@ -849,7 +849,7 @@ QSlider::add-page:vertical {
}
QSlider::add-page:vertical:disabled {
background-color: rgb(50,49,50);
background-color: palette(window);
border-radius: 2px;
}