From 7152dfe6e10da6e1d8ad6f29389f19c2ac812353 Mon Sep 17 00:00:00 2001 From: J-P Nurmi Date: Tue, 21 Apr 2015 13:55:11 +0200 Subject: Theme example: workaround for missing back icon on Android Change-Id: I3f2227241bbb37320b83aecb8cd8c4d2e16388d9 Reviewed-by: J-P Nurmi --- examples/quick/controls/theme/main.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'examples') 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 } -- cgit v1.2.3