aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/controls/theme/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/controls/theme/main.qml')
-rw-r--r--examples/quick/controls/theme/main.qml5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/quick/controls/theme/main.qml b/examples/quick/controls/theme/main.qml
index 58f5b5f9..78285497 100644
--- a/examples/quick/controls/theme/main.qml
+++ b/examples/quick/controls/theme/main.qml
@@ -51,7 +51,10 @@ ApplicationWindow {
header: ToolBar {
ToolButton {
label: Text {
- text: "\u25C0"
+ // \u25C0 (black left-pointing triangle is) missing in some fonts
+ // => use a rotated \u25B2 (black up-pointing triangle) instead
+ text: "\u25B2"
+ rotation: -90
color: enabled ? Theme.accentColor : Theme.frameColor
anchors.centerIn: parent
}