From bdeff669ea7a7bc9e0038a6b08baecc7b48bf779 Mon Sep 17 00:00:00 2001 From: Paul Hebble Date: Thu, 9 May 2019 13:59:56 -0500 Subject: [PATCH] Hide auto-installed checkbox for auto-detected mods --- GUI/MainModList.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUI/MainModList.cs b/GUI/MainModList.cs index c85935d9e7..7f0cb06073 100644 --- a/GUI/MainModList.cs +++ b/GUI/MainModList.cs @@ -893,7 +893,7 @@ private DataGridViewRow MakeRow(GUIMod mod, List changes, bool hideEp Value = mod.IsAutodetected ? "AD" : "-" }; - var autoInstalled = mod.IsInstalled + var autoInstalled = mod.IsInstalled && !mod.IsAutodetected ? (DataGridViewCell) new DataGridViewCheckBoxCell() { Value = mod.IsAutoInstalled