From 77fece65853a594813ce806a9431a14604a2f33f Mon Sep 17 00:00:00 2001 From: daid303 Date: Thu, 4 Oct 2012 10:15:06 +0200 Subject: [PATCH] Remove the console window when opening an STL directly. --- scripts/win32/installer.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/win32/installer.nsi b/scripts/win32/installer.nsi index ed173e1..e75a69a 100644 --- a/scripts/win32/installer.nsi +++ b/scripts/win32/installer.nsi @@ -112,7 +112,7 @@ Section "Open STL files with Cura" DeleteRegValue HKCR .stl "Content Type" WriteRegStr HKCR "Cura STL model file\DefaultIcon" "" "$INSTDIR\Cura\stl.ico,0" WriteRegStr HKCR "Cura STL model file\shell" "" "open" - WriteRegStr HKCR "Cura STL model file\shell\open\command" "" '"$INSTDIR\python\python.exe" "$INSTDIR\Cura\cura.py" "%1"' + WriteRegStr HKCR "Cura STL model file\shell\open\command" "" '"$INSTDIR\python\pythonw.exe" "$INSTDIR\Cura\cura.py" "%1"' SectionEnd ;--------------------------------