Skip to content

Commit

Permalink
Merge pull request #418 from Aragas/dev
Browse files Browse the repository at this point in the history
v5.8.3
  • Loading branch information
Aragas authored Jul 15, 2023
2 parents e42ab29 + 8d8ee0d commit 54cfbe7
Show file tree
Hide file tree
Showing 4 changed files with 369 additions and 369 deletions.
4 changes: 2 additions & 2 deletions build/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

<PropertyGroup>
<GameVersion>1.0.0</GameVersion>
<Version>5.8.2</Version>
<Version>5.8.3</Version>
<HarmonyVersion>2.2.2</HarmonyVersion>
<ButterLibVersion>2.8.8</ButterLibVersion>
<ButterLibVersion>2.8.9</ButterLibVersion>
<UIExtenderExVersion>2.8.0</UIExtenderExVersion>
<BuildResourcesVersion>1.1.0.102</BuildResourcesVersion>
<BUTRSharedVersion>3.0.0.137</BUTRSharedVersion>
Expand Down
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
---------------------------------------------------------------------------------------------------
Version: 5.8.3
Game Versions: v1.0.0,v1.0.1,v1.0.2,v1.0.3,v1.1.0,v1.1.1,v1.1.2,v1.1.3,v1.1.4,v1.1.5,v1.2.0,v1.2.1
* Fixed Close/Done buttons not working in the Options screen
---------------------------------------------------------------------------------------------------
Version: 5.8.2
Game Versions: v1.0.0,v1.0.1,v1.0.2,v1.0.3,v1.1.0,v1.1.1,v1.1.2,v1.1.3,v1.1.4,v1.1.5,v1.2.0,v1.2.1
* Added Preset Import/Export/Deleting
Expand Down
4 changes: 0 additions & 4 deletions src/MCM.UI/GUI/ViewModels/ModOptionsVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,6 @@ public void ExecuteClose()

public bool ExecuteCancelInternal(bool popScreen, Action? onClose = null)
{
if (IsDisabled) return false;

OnFinalize();
if (popScreen) ScreenManager.PopScreen();
else onClose?.Invoke();
Expand All @@ -309,8 +307,6 @@ public bool ExecuteCancelInternal(bool popScreen, Action? onClose = null)
public void ExecuteDone() => ExecuteDoneInternal(true);
public void ExecuteDoneInternal(bool popScreen, Action? onClose = null)
{
if (IsDisabled) return;

if (!ModSettingsList.Any(x => x.URS.ChangesMade))
{
OnFinalize();
Expand Down
Loading

0 comments on commit 54cfbe7

Please sign in to comment.