launcher: attempt at fixing potential crash when launching app

This commit is contained in:
Lemmy
2026-02-10 18:50:35 -05:00
parent 031685517b
commit a562bcd311
+4 -1
View File
@@ -185,7 +185,10 @@ Rectangle {
}
}
onSearchTextChanged: updateResults()
onSearchTextChanged: {
if (isOpen)
updateResults();
}
function close() {
requestClose();