From d34c52d7e869750a1e3c6256f32a5019b212c20f Mon Sep 17 00:00:00 2001 From: Treeki Date: Tue, 22 Nov 2011 23:06:49 +0100 Subject: this should *hopefully* fix the weird deletion bug --- src/editorui/paths.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/editorui/paths.py') diff --git a/src/editorui/paths.py b/src/editorui/paths.py index c8cac78..cec85fa 100644 --- a/src/editorui/paths.py +++ b/src/editorui/paths.py @@ -389,6 +389,11 @@ class KPEditorPath(QtGui.QGraphicsLineItem): def updatePosition(self): path = self._pathRef() + sn = path._startNodeRef() + en = path._endNodeRef() + if sn is None or en is None: + return + x1, y1 = path._startNodeRef().position x2, y2 = path._endNodeRef().position @@ -421,6 +426,11 @@ class KPEditorPath(QtGui.QGraphicsLineItem): def remove(self, withItem=False): + if hasattr(self, 'hasBeenRemovedAlready'): + return + + self.hasBeenRemovedAlready = True + path = self._pathRef() layer = KP.map.pathLayer -- cgit v1.2.3