diff --git a/usr/lib/linuxmint/mintInstall/mintinstall.py b/usr/lib/linuxmint/mintInstall/mintinstall.py index 91fca29e..efed3b47 100755 --- a/usr/lib/linuxmint/mintInstall/mintinstall.py +++ b/usr/lib/linuxmint/mintInstall/mintinstall.py @@ -181,6 +181,10 @@ def _on_transactions_changed(self, current, queued): for package in self.packages: if package.pkg.name == pkg_name: package.pkg = new_pkg + # If the user is currently viewing this package in the browser, + # refresh the view to show that the package has been installed or uninstalled. + if self.application.navigation_bar.get_active().get_label() == pkg_name: + self.application.show_package(package, None) # Update apps tree model_apps = self.wTree.get_widget("tree_applications").get_model()