Skip to content

Commit

Permalink
Merge #2654 Don't try to update filters if mod list missing
Browse files Browse the repository at this point in the history
  • Loading branch information
politas committed Jan 14, 2019
2 parents 6cac28d + 2f38433 commit 994a558
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ All notable changes to this project will be documented in this file.
- [Multiple] `ckan ksp fake/clone` fixes (#2642 by: DasSkelett; reviewed: HebaruSan)
- [GUI] Handle semi-virtual dependencies in Relationships tab (#2645 by: HebaruSan; reviewed: politas)
- [Multiple] Derive User classes from IUser interface instead of NullUser (#2648 by: DasSkelett; reviewed: HebaruSan)
- [GUI] Show all recommendations of metapackages in GUI (#2653 by: HebaruSan; reviewed: politas)
- [GUI] Don't try to update filters if mod list missing (#2654 by: HebaruSan; reviewed: politas)

## v1.25.4 Kennedy

Expand Down
2 changes: 1 addition & 1 deletion GUI/MainModList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ private void UpdateFilters(Main control)

private void _UpdateFilters()
{
if (ModList == null)
if (ModList == null || mainModList?.full_list_of_mod_rows == null)
return;

// Each time a row in DataGridViewRow is changed, DataGridViewRow updates the view. Which is slow.
Expand Down

0 comments on commit 994a558

Please sign in to comment.