diff installer-files/octave.bat @ 3811:01182b377bb1

Don't display empty cmd window when starting GUI in Windows (partial fix for bug #41074). * installer-files/octave.bat: Add /B switch to start command for running octave-gui.exe. The cmd window from running octave.bat may still be shown briefly on some platforms.
author Rik <rik@octave.org>
date Thu, 26 Feb 2015 09:17:38 -0800
parents 70480095b6ed
children fbc5d86517c9
line wrap: on
line diff
--- a/installer-files/octave.bat	Wed Feb 25 19:00:32 2015 -0500
+++ b/installer-files/octave.bat	Thu Feb 26 09:17:38 2015 -0800
@@ -33,7 +33,7 @@
 
 Rem   Start Octave (this detaches and immediately returns):
 if %GUI_MODE%==1 (
-start octave-gui.exe %*
+start /B octave-gui.exe %*
 ) else (
 start octave-cli.exe %*
 )