From e6ecfaf171c79aa61736728af3e0a9643c1138e9 Mon Sep 17 00:00:00 2001 From: ronoaer Date: Sat, 21 Oct 2023 16:11:54 +0800 Subject: [PATCH] adapted awg-questiondrawer with drawer2type --- client/ui/qml/Pages2/PageProtocolAwgSettings.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/ui/qml/Pages2/PageProtocolAwgSettings.qml b/client/ui/qml/Pages2/PageProtocolAwgSettings.qml index 079c85a10..68eaac663 100644 --- a/client/ui/qml/Pages2/PageProtocolAwgSettings.qml +++ b/client/ui/qml/Pages2/PageProtocolAwgSettings.qml @@ -286,9 +286,9 @@ PageType { InstallController.removeCurrentlyProcessedContainer() } questionDrawer.noButtonFunction = function() { - questionDrawer.visible = false + questionDrawer.close() } - questionDrawer.visible = true + questionDrawer.open() } } @@ -324,6 +324,7 @@ PageType { QuestionDrawer { id: questionDrawer + parent: root } } }