From 959b5e432198779a4125093c23eb2e00c62a6948 Mon Sep 17 00:00:00 2001 From: daid Date: Mon, 28 Apr 2014 14:15:18 +0200 Subject: [PATCH] Fix #829 --- Cura/gui/sceneView.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/gui/sceneView.py b/Cura/gui/sceneView.py index 3240511c..2913e4b5 100644 --- a/Cura/gui/sceneView.py +++ b/Cura/gui/sceneView.py @@ -504,7 +504,7 @@ class SceneView(openglGui.glGuiPanel): if n > cnt: break if n <= cnt: - self.notification.message("Could not create more then %d items" % (n - 1)) + self.notification.message("Could not create more than %d items" % (n - 1)) self._scene.remove(newObj) self._scene.centerAll() self.sceneUpdated() -- 2.30.2