Skip to content

Commit

Permalink
In checkbox mode, on right click add the item to the selection instea…
Browse files Browse the repository at this point in the history
…d of clearing the selection

Closes #485
  • Loading branch information
Klocman committed May 15, 2023
1 parent f2060f7 commit 6fe9cd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/BulkCrapUninstaller/Forms/Windows/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1226,7 +1226,7 @@ private void uninstallerObjectListView_CellRightClick(object sender, CellRightCl

if (uninstallerObjectListView.CheckBoxes && !uninstallerObjectListView.IsChecked(e.Model))
{
uninstallerObjectListView.UncheckAll();
//uninstallerObjectListView.UncheckAll();
uninstallerObjectListView.CheckObject(e.Model);
}
}
Expand Down

0 comments on commit 6fe9cd7

Please sign in to comment.