Skip to content

Commit

Permalink
Merge pull request #1135 from shananas/master
Browse files Browse the repository at this point in the history
Mod Manager Bug Fix
  • Loading branch information
Oathseeker authored Jan 12, 2025
2 parents 8f87027 + 81e3238 commit f7468ea
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions OpenKh.Tools.ModsManager/ViewModels/SetupWizardViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,14 @@ bool IsEqual(byte[] left, byte[] right)
public SetupWizardViewModel()
{
IsNotExtracting = true;
if (ConfigurationService.PCVersion == "Steam")
{
WizardPageAfterLuaBackend = PageSteamAPITrick;
}
else
{
WizardPageAfterLuaBackend = PageGameData;
}
SelectIsoCommand = new RelayCommand(_ =>
FileDialog.OnOpen(fileName => IsoLocation = fileName, _isoFilter));
SelectOpenKhGameEngineCommand = new RelayCommand(_ =>
Expand Down

0 comments on commit f7468ea

Please sign in to comment.