Skip to content

Commit

Permalink
Merge #3822 Only update Versions tab when the mod changes
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Apr 13, 2023
2 parents 3c566a8 + 6f3c726 commit 92bb9af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file.

## v1.32.1

### Bugfixes

- [GUI] Only update Versions tab when the mod changes (#3822 by: HebaruSan; reviewed: techman83)

## v1.32.0 (Kepler)

Expand Down
10 changes: 5 additions & 5 deletions GUI/Controls/ModInfoTabs/Versions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,12 @@ public GUIMod SelectedModule
{
visibleGuiModule.PropertyChanged += visibleGuiModule_PropertyChanged;
}

if (value != null)
{
Refresh(value);
}
}
if (value == null)
{
return;
}
Refresh(value);
}
}

Expand Down

0 comments on commit 92bb9af

Please sign in to comment.