summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/controls/Styles/Base/MenuStyle.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/controls/Styles/Base/MenuStyle.qml b/src/controls/Styles/Base/MenuStyle.qml
index 0b1db87c..dfb9d472 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.pixelSize: __labelFontPixelSize
+ renderType: Text.NativeRendering
}
submenuIndicator: Text {
@@ -199,12 +200,14 @@ Style {
color: __currentTextColor
style: styleData.selected ? Text.Normal : Text.Raised
styleColor: Qt.lighter(color, 4)
+ renderType: Text.NativeRendering
}
shortcut: Text {
text: styleData.shortcut
font.pixelSize: __labelFontPixelSize * 0.9
color: __currentTextColor
+ renderType: Text.NativeRendering
}
checkmarkIndicator: Loader {