summaryrefslogtreecommitdiff
path: root/src/editorui/doodads.py
diff options
context:
space:
mode:
authorColin Noga <Tempus@chronometry.ca>2012-07-23 12:28:50 -0500
committerColin Noga <Tempus@chronometry.ca>2012-07-23 12:28:50 -0500
commite3bbfbabe74bb525adcf16b784338c4cf4e7507c (patch)
tree0cc5c2e0925cca094e48d031e502e7ad321aa41a /src/editorui/doodads.py
parentb12d27291609d79abe2e0e0817acdf5a1c3e2acb (diff)
downloadkoopatlas-e3bbfbabe74bb525adcf16b784338c4cf4e7507c.tar.gz
koopatlas-e3bbfbabe74bb525adcf16b784338c4cf4e7507c.zip
Reverted multi-layer selection changes to only the selected layer and path layers
Diffstat (limited to 'src/editorui/doodads.py')
-rw-r--r--src/editorui/doodads.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/editorui/doodads.py b/src/editorui/doodads.py
index 89ccfc7..068c420 100644
--- a/src/editorui/doodads.py
+++ b/src/editorui/doodads.py
@@ -426,9 +426,9 @@ class KPEditorDoodad(KPEditorItem):
def hoverMoveEvent(self, event):
- # if self._layerRef() != KP.mapScene.currentLayer:
- # self.setCursor(Qt.ArrowCursor)
- # return
+ if self._layerRef() != KP.mapScene.currentLayer:
+ self.setCursor(Qt.ArrowCursor)
+ return
pos = event.pos()
bit = self.resizerPortionAt(pos.x(), pos.y())
@@ -460,8 +460,8 @@ class KPEditorDoodad(KPEditorItem):
pos = event.pos()
bit = self.resizerPortionAt(pos.x(), pos.y())
- # if self._layerRef() == KP.mapScene.currentLayer and bit:
- if bit:
+ if self._layerRef() == KP.mapScene.currentLayer and bit:
+ # if bit:
event.accept()
if (event.modifiers() & Qt.ShiftModifier):