diff options
Diffstat (limited to 'src/controls/Styles/Base/MenuStyle.qml')
-rw-r--r-- | src/controls/Styles/Base/MenuStyle.qml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/controls/Styles/Base/MenuStyle.qml b/src/controls/Styles/Base/MenuStyle.qml index d9cad52b..bfe78f7c 100644 --- a/src/controls/Styles/Base/MenuStyle.qml +++ b/src/controls/Styles/Base/MenuStyle.qml @@ -191,6 +191,7 @@ Style { text: formatMnemonic(styleData.text, styleData.underlineMnemonic) color: __currentTextColor font: styleRoot.font + renderType: Text.NativeRendering } submenuIndicator: Text { @@ -199,6 +200,7 @@ Style { color: __currentTextColor style: styleData.selected ? Text.Normal : Text.Raised styleColor: Qt.lighter(color, 4) + renderType: Text.NativeRendering } shortcut: Text { @@ -216,6 +218,7 @@ Style { wordSpacing: styleRoot.font.wordSpacing } color: __currentTextColor + renderType: Text.NativeRendering } checkmarkIndicator: Loader { |