Skip to content

Commit

Permalink
fix: input popup surface item not removed
Browse files Browse the repository at this point in the history
Fix input popup surface item not removed due to wrong property name.

Log: fix input popup surface item not removed
  • Loading branch information
asterwyx committed Dec 14, 2023
1 parent 14c0a6f commit c06f7d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/treeland/quick/qml/Main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ Item {
}
onInputPopupSurfaceV2Removed: function (surface) {
QmlHelper.inputPopupSurfaceManager.removeIf(function (prop) {
return prop.waylandSurface === surface
return prop.popupSurface === surface
})
}
}
Expand Down

0 comments on commit c06f7d1

Please sign in to comment.