diff --git a/CHANGELOG.md b/CHANGELOG.md index 558c77453e..2ece235989 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -67,6 +67,7 @@ All notable changes to this project will be documented in this file. - [GUI] Only update mod list once at GUI startup (#2694 by: HebaruSan; reviewed: politas) - [GUI] Only show replace col if a replaced module is installed (#2697 by: HebaruSan; reviewed: politas) - [GUI] Update all CKAN URL references (#2702 by: DasSkelett; reviewed: HebaruSan) +- [GUI] Select 2nd instead of 3rd cell on MarkAllUpdatesToolButton_Click (#2704 by: DasSkelett; reviewed: politas) ## v1.25.4 Kennedy diff --git a/GUI/Main.cs b/GUI/Main.cs index d649abdb58..f0684d6eaa 100644 --- a/GUI/Main.cs +++ b/GUI/Main.cs @@ -572,10 +572,8 @@ private void MarkAllUpdatesToolButton_Click(object sender, EventArgs e) configuration.SortByColumnIndex = new_sort_column.Index; UpdateFilters(this); - // Selects the top row and scrolls the list to it. - DataGridViewCell cell = ModList.Rows[0].Cells[2]; - ModList.CurrentCell = cell; - + // Select the top row and scroll the list to it. + ModList.CurrentCell = ModList.Rows[0].Cells[1]; } ModList.Refresh();