We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05183b2 commit d638c8aCopy full SHA for d638c8a
src/Graphics/Implicit/Viewer/Loaders.hs
@@ -81,8 +81,9 @@ loadByExtension
81
-> IO ()
82
loadByExtension f initialResolution renderChan
83
| ".hs" `isSuffixOf` f = loadViaHint f initialResolution renderChan
84
+ | ".scad" `isSuffixOf` f = loadViaEscad f initialResolution renderChan
85
| ".escad" `isSuffixOf` f = loadViaEscad f initialResolution renderChan
-loadByExtension f _ _ = putStrLn $ "Don't know how to load " ++ f ++ ", I only know how render .hs and .escad"
86
+loadByExtension f _ _ = putStrLn $ "Don't know how to load " ++ f ++ ", I only know how render .hs, .scad and .escad"
87
88
loadViaHint
89
:: FilePath
0 commit comments