diff --git a/Cura/stl.ico b/Cura/stl.ico new file mode 100644 index 0000000000..6ab56db14e Binary files /dev/null and b/Cura/stl.ico differ diff --git a/scripts/win32/installer.nsi b/scripts/win32/installer.nsi index 386034c735..45a732c8c0 100644 --- a/scripts/win32/installer.nsi +++ b/scripts/win32/installer.nsi @@ -107,10 +107,10 @@ Section "Cura ${VERSION}" SectionEnd Section "Open STL files with Cura" - WriteRegStr HKCR .stl "" "STL file" - ;WriteRegStr HKCR "STL file\DefaultIcon" "" "$INSTDIR\stl.ico,0" - WriteRegStr HKCR "STL file\shell" "" "open" - WriteRegStr HKCR "STL file\shell\open\command" "" '"$INSTDIR\python\python.exe" "$INSTDIR\Cura\cura.py" "%1"' + WriteRegStr HKCR .stl "" "Cura STL model file" + WriteRegStr HKCR "STL file\DefaultIcon" "" "$INSTDIR\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"' SectionEnd ;--------------------------------