Fix uninstall response

Make it so that outside of batch mode the uninstalled toast does not mention anything about selected apps
This commit is contained in:
heliguy4599
2023-09-18 15:24:17 -04:00
parent 6126d6e5fc
commit 4a83a7552d

View File

@@ -124,7 +124,10 @@ class WarehouseWindow(Adw.ApplicationWindow):
self.main_toolbar_view.set_sensitive(True)
self.disconnect(self.no_close)
if self.uninstall_success:
self.toast_overlay.add_toast(Adw.Toast.new(_("Uninstalled selected apps")))
if self.in_batch_mode:
self.toast_overlay.add_toast(Adw.Toast.new(_("Uninstalled selected apps")))
else:
self.toast_overlay.add_toast(Adw.Toast.new(_("Uninstalled app")))
else:
self.toast_overlay.add_toast(Adw.Toast.new(_("Could not uninstall some apps")))