fix an issue

This commit is contained in:
guinux 2015-01-05 21:08:24 +01:00
parent b14d80bf6f
commit 0f88799bf5
1 changed files with 2 additions and 0 deletions

View File

@ -598,6 +598,7 @@ namespace Pamac {
void on_reinstall_item_activate () {
foreach (Pamac.Package pkg in selected_pkgs) {
transaction.to_remove.steal (pkg.name);
if (pkg.repo == "local")
transaction.to_add.insert (pkg.name, pkg.name);
}
@ -607,6 +608,7 @@ namespace Pamac {
void on_remove_item_activate () {
foreach (Pamac.Package pkg in selected_pkgs) {
transaction.to_add.steal (pkg.name);
if (transaction.alpm_config.holdpkgs.find_custom (pkg.name, strcmp) == null) {
if (pkg.repo == "local")
transaction.to_remove.insert (pkg.name, pkg.name);