aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Tools')
-rw-r--r--OpenSim/Tools/LaunchSLClient/LaunchSLClient/Form1.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Tools/LaunchSLClient/LaunchSLClient/Form1.cs b/OpenSim/Tools/LaunchSLClient/LaunchSLClient/Form1.cs
index d53f919..dbc58ff 100644
--- a/OpenSim/Tools/LaunchSLClient/LaunchSLClient/Form1.cs
+++ b/OpenSim/Tools/LaunchSLClient/LaunchSLClient/Form1.cs
@@ -228,6 +228,9 @@ namespace LaunchSLClient
228 } 228 }
229 } 229 }
230 230
231 comboBox1.DroppedDown = false;
232 Hide();
233
231 System.Diagnostics.Process proc = new System.Diagnostics.Process(); 234 System.Diagnostics.Process proc = new System.Diagnostics.Process();
232 proc.StartInfo.FileName = runLine; 235 proc.StartInfo.FileName = runLine;
233 proc.StartInfo.Arguments = exeFlags + " " + runUrl; 236 proc.StartInfo.Arguments = exeFlags + " " + runUrl;
@@ -236,6 +239,8 @@ namespace LaunchSLClient
236 proc.StartInfo.WorkingDirectory = exePath; 239 proc.StartInfo.WorkingDirectory = exePath;
237 proc.Start(); 240 proc.Start();
238 proc.WaitForExit(); 241 proc.WaitForExit();
242
243 Application.Exit();
239 } 244 }
240 } 245 }
241} 246}