fix: center notification icon and fix reload of Patches Selector View

This commit is contained in:
Alberto Ponces
2022-08-18 00:33:04 +01:00
parent 492aa848ff
commit 6153e1f9e8
3 changed files with 28 additions and 25 deletions

View File

@ -45,6 +45,7 @@ class AppSelectorViewModel extends BaseViewModel {
);
locator<AppSelectorViewModel>().selectedApp = app;
locator<PatchesSelectorViewModel>().selectedPatches.clear();
locator<PatchesSelectorViewModel>().notifyListeners();
locator<PatcherViewModel>().notifyListeners();
}
@ -74,6 +75,7 @@ class AppSelectorViewModel extends BaseViewModel {
);
locator<AppSelectorViewModel>().selectedApp = app;
locator<PatchesSelectorViewModel>().selectedPatches.clear();
locator<PatchesSelectorViewModel>().notifyListeners();
locator<PatcherViewModel>().notifyListeners();
}
}