From a5a16f6f499cf3166221bfefe119518eebdc8ca0 Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Thu, 1 May 2008 19:20:53 +0000 Subject: Get LaunchSLClient window out of the way when launching SL. --- OpenSim/Tools/LaunchSLClient/LaunchSLClient/Form1.cs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'OpenSim/Tools/LaunchSLClient') 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 } } + comboBox1.DroppedDown = false; + Hide(); + System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.StartInfo.FileName = runLine; proc.StartInfo.Arguments = exeFlags + " " + runUrl; @@ -236,6 +239,8 @@ namespace LaunchSLClient proc.StartInfo.WorkingDirectory = exePath; proc.Start(); proc.WaitForExit(); + + Application.Exit(); } } } -- cgit v1.1