From b8fcdb27cf561517d30d30b591ee88960305d84d Mon Sep 17 00:00:00 2001 From: "pls.153" Date: Sat, 18 Oct 2025 17:12:13 +0200 Subject: [PATCH] revision --- examples/debug-ui/qml/debug/MenuBack.qml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/examples/debug-ui/qml/debug/MenuBack.qml b/examples/debug-ui/qml/debug/MenuBack.qml index 69dbd83..c028508 100644 --- a/examples/debug-ui/qml/debug/MenuBack.qml +++ b/examples/debug-ui/qml/debug/MenuBack.qml @@ -16,14 +16,13 @@ Rectangle { background: Rectangle { Text { - id: iconBack + id: back x: 10 height: backButton.height verticalAlignment: Text.AlignVCenter - font.family: fontAwesome.name - font.pixelSize: 32 color: "#007aff" - text: "\uf104" + font.pixelSize: 18 + text: qsTr("Back") } Text { @@ -32,7 +31,7 @@ Rectangle { verticalAlignment: Text.AlignVCenter font.pixelSize: 20 font.weight: Font.DemiBold - color: iconBack.color + color: back.color text: "Repl" visible: (Qt.platform.os === "ios") }