From cb8ed02e82df620b03ca3521d765cf9edfe526d6 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 25 Jul 2024 19:03:04 -0400 Subject: [PATCH] Fix the emoji page not doing anything This is yet more stuff broken due to referencing a implicit pageStack that no longer exists. --- src/settings/EmoticonFormCard.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/settings/EmoticonFormCard.qml b/src/settings/EmoticonFormCard.qml index c2636cfc7..252e6eab8 100644 --- a/src/settings/EmoticonFormCard.qml +++ b/src/settings/EmoticonFormCard.qml @@ -41,7 +41,7 @@ FormCard.FormCard { width: stickerFlow.width / 4 height: width - onClicked: pageStack.pushDialogLayer(emoticonEditorPage, { + onClicked: root.QQC2.ApplicationWindow.window.pageStack.pushDialogLayer(emoticonEditorPage, { description: model.body ?? "", index: model.index, url: model.url, @@ -90,7 +90,7 @@ FormCard.FormCard { width: stickerFlow.width / 4 height: width - onClicked: pageStack.pushDialogLayer(emoticonEditorPage, { + onClicked: root.QQC2.ApplicationWindow.window.pageStack.pushDialogLayer(emoticonEditorPage, { description: "", index: -1, url: "",