Skip to content

Commit

Permalink
Hide auto-installed checkbox for auto-detected mods
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed May 9, 2019
1 parent 065773c commit bdeff66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GUI/MainModList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ private DataGridViewRow MakeRow(GUIMod mod, List<ModChange> changes, bool hideEp
Value = mod.IsAutodetected ? "AD" : "-"
};

var autoInstalled = mod.IsInstalled
var autoInstalled = mod.IsInstalled && !mod.IsAutodetected
? (DataGridViewCell) new DataGridViewCheckBoxCell()
{
Value = mod.IsAutoInstalled
Expand Down

0 comments on commit bdeff66

Please sign in to comment.