We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ad723a commit f91906cCopy full SHA for f91906c
1 file changed
UnityLauncherPro/MainWindow.xaml.cs
@@ -133,8 +133,11 @@ void Start()
133
// Send a wake-up message to the running instance
134
ActivateRunningInstance();
135
136
- // Exit the current instance
137
- App.Current.Shutdown();
+ // Exit the current instance (if not coming from Explorer launch)
+ if (Directory.GetCurrentDirectory().ToLower() != @"c:\windows\system32")
138
+ {
139
+ App.Current.Shutdown();
140
+ }
141
}
142
else
143
{
0 commit comments