WallhavenSettingsPopup: fix apply button clickthrough

This commit is contained in:
Ly-sec
2025-11-15 19:52:08 +01:00
parent 0314d2445e
commit c730ac4f34
@@ -621,8 +621,10 @@ Popup {
// Refresh the wallpaper search with current settings
WallhavenService.search(Settings.data.wallpaper.wallhavenQuery || "", 1)
// Close the popup after applying
root.hide()
// Close the popup after applying (delay to prevent click propagation)
Qt.callLater(() => {
root.hide()
})
}
}
}