-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.7.1
-
None
-
OSX
if a QSpinBox is disabled the foreground is currently black, not dark gray, as one would expect. This can easily be worked around like so:
QPalette pal = spinbox->palette();
pal.setColor(QPalette::Disabled, QPalette::Text, Qt::darkGray);
spinbox->setPalette(pal);