Skip to content
This repository has been archived by the owner on May 19, 2021. It is now read-only.

Commit

Permalink
add msgbox in case of rare settings error
Browse files Browse the repository at this point in the history
  • Loading branch information
unitycoder committed Feb 25, 2018
1 parent 953ecf7 commit 4a243b9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions UnityLauncher/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,8 @@ string[] GetUnityInstallationsRootFolder()
}
catch (Exception e)
{
MessageBox.Show("Rare Error while checking unity installation folder settings: " + e.Message, "UnityLauncher", MessageBoxButtons.OK);

// this doesnt work?
Properties.Settings.Default.Reset();
Properties.Settings.Default.Save();
Expand Down

0 comments on commit 4a243b9

Please sign in to comment.