macOS: Fix label color in tool buttons

For example the "Ignore Whitespace" button in the diff viewer

Change-Id: I9882b9d2f3e22635bfbb047904ef284dd515db9f
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Eike Ziller
2020-03-10 13:25:50 +01:00
parent 4ce49bbfde
commit 3992e3c113

View File

@@ -857,7 +857,11 @@ void ManhattanStyle::drawControl(ControlElement element, const QStyleOption *opt
}
}
break;
case CE_ToolButtonLabel:
// Directly use QCommonStyle to circumvent funny painting in QMacStyle
// which ignores the palette and adds an alpha
QCommonStyle::drawControl(element, option, painter, widget);
break;
default:
QProxyStyle::drawControl(element, option, painter, widget);
break;