From 21a228622c2c3ba6618c5130f1c2937131972c59 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sun, 22 Nov 2020 12:31:54 +0100 Subject: [PATCH] Fix about page broken --- qml/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/main.qml b/qml/main.qml index 4432769ee..c654f57a2 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -127,7 +127,7 @@ Kirigami.ApplicationWindow { Kirigami.Action { text: i18n("About Neochat") iconName: "help-about" - onTriggered: pushReplaceLayer("qrc:/imports/NeoChat/Page/AboutPage.qml") + onTriggered: pushReplaceLayer(aboutPage) enabled: pageStack.layers.currentItem.title !== i18n("About") } ]