From 348f7bdf620923e5bd275acd9e55882b77351bc5 Mon Sep 17 00:00:00 2001 From: darklithium Date: Wed, 3 Jun 2026 00:34:32 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20PageHeader=20actions=20zu=20Page=20actio?= =?UTF-8?q?ns=20verschoben=20-=20actions-Property=20geh=C3=B6rt=20in=20Pag?= =?UTF-8?q?e,=20nicht=20in=20PageHeader=20(Lomiri.Components=20Standard)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe --- qml/Main.qml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/qml/Main.qml b/qml/Main.qml index 74f4315..8b09251 100644 --- a/qml/Main.qml +++ b/qml/Main.qml @@ -61,19 +61,18 @@ MainView { header: PageHeader { title: "Fortune Cookie" - - // Einstellungen-Button im Header - actions: [ - Action { - iconName: "settings" - text: "Einstellungen" - onTriggered: { - mainStack.currentIndex = 1; - } - } - ] } + actions: [ + Action { + iconName: "settings" + text: "Einstellungen" + onTriggered: { + mainStack.currentIndex = 1; + } + } + ] + // ============================================================ // INITIALISIERUNGS-TIMER // ============================================================