Browse Source

Remove unnecessary parameter to JS toString

This parameter has no effect.

Contributes to issue CURA-1110.
Ghostkeeper 9 years ago
parent
commit
e5a5cffe7d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/qml/Cura.qml

+ 1 - 1
resources/qml/Cura.qml

@@ -696,7 +696,7 @@ UM.MainWindow
             folder = f;
 
             UM.MeshFileHandler.readLocalFile(fileUrl)
-            var meshName = backgroundItem.getMeshName(fileUrl.toString(0x0))
+            var meshName = backgroundItem.getMeshName(fileUrl.toString())
             backgroundItem.hasMesh(decodeURIComponent(meshName))
         }
     }