Fixed input filter after move of app

This commit is contained in:
Willem Cazander 2023-03-18 15:37:39 +01:00
parent 2364da1105
commit b647c2520b

View file

@ -62,7 +62,7 @@ public class DeskAppController {
public void removeDeskApp(DeskApp deskApp) {
deskApps.remove(deskApp);
if (currentDeskApp == deskApp) {
currentDeskApp = null;
setCurrentDeskApp(null);
}
}