From c06f7d15acc5ed9f15ac00d03e4cfe70c227d569 Mon Sep 17 00:00:00 2001 From: Yixue Wang Date: Thu, 14 Dec 2023 14:57:44 +0800 Subject: [PATCH] fix: input popup surface item not removed Fix input popup surface item not removed due to wrong property name. Log: fix input popup surface item not removed --- src/treeland/quick/qml/Main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/treeland/quick/qml/Main.qml b/src/treeland/quick/qml/Main.qml index fa9b7440..59341875 100644 --- a/src/treeland/quick/qml/Main.qml +++ b/src/treeland/quick/qml/Main.qml @@ -250,7 +250,7 @@ Item { } onInputPopupSurfaceV2Removed: function (surface) { QmlHelper.inputPopupSurfaceManager.removeIf(function (prop) { - return prop.waylandSurface === surface + return prop.popupSurface === surface }) } }