Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArjen Hiemstra <a.hiemstra@ultimaker.com>2015-09-03 20:15:24 +0300
committerArjen Hiemstra <a.hiemstra@ultimaker.com>2015-09-03 20:15:24 +0300
commitb610f276d96b3f9a5d8236f2fdbde255a16ddf2e (patch)
tree8ea136268076b19c898296ca434b61012c512f14 /installer.nsi
parent7083ffd351a3feb00d0230a64619e07efaa943f5 (diff)
Use a better icon for file associations
Diffstat (limited to 'installer.nsi')
-rw-r--r--installer.nsi4
1 files changed, 2 insertions, 2 deletions
diff --git a/installer.nsi b/installer.nsi
index ec6da5f8e4..037d7b3233 100644
--- a/installer.nsi
+++ b/installer.nsi
@@ -128,7 +128,7 @@ SectionEnd
Section "Open STL files with Cura"
WriteRegStr HKCR .stl "" "Cura STL model file"
DeleteRegValue HKCR .stl "Content Type"
- WriteRegStr HKCR "Cura STL model file\DefaultIcon" "" "$INSTDIR\resources\stl.ico,0"
+ WriteRegStr HKCR "Cura STL model file\DefaultIcon" "" "$INSTDIR\Cura.exe,0"
WriteRegStr HKCR "Cura STL model file\shell" "" "open"
WriteRegStr HKCR "Cura STL model file\shell\open\command" "" '"$INSTDIR\Cura.exe" "%1"'
SectionEnd
@@ -136,7 +136,7 @@ SectionEnd
Section /o "Open OBJ files with Cura"
WriteRegStr HKCR .obj "" "Cura OBJ model file"
DeleteRegValue HKCR .obj "Content Type"
- WriteRegStr HKCR "Cura OBJ model file\DefaultIcon" "" "$INSTDIR\resources\stl.ico,0"
+ WriteRegStr HKCR "Cura OBJ model file\DefaultIcon" "" "$INSTDIR\Cura.exe,0"
WriteRegStr HKCR "Cura OBJ model file\shell" "" "open"
WriteRegStr HKCR "Cura OBJ model file\shell\open\command" "" '"$INSTDIR\Cura.exe" "%1"'
SectionEnd