diff options
author | Colin Noga <Tempus@chronometry.ca> | 2012-05-21 01:41:02 -0500 |
---|---|---|
committer | Colin Noga <Tempus@chronometry.ca> | 2012-05-21 01:41:02 -0500 |
commit | ba959d67836d483007c384f1a87fcfba12332295 (patch) | |
tree | 67ebe1f6259c5f82c4e1fdc45a9249d9d0bede76 /src/editorui/doodads.py | |
parent | 197fca6d7d16fa849c6e8e214008108a26ac4c7c (diff) | |
download | koopatlas-ba959d67836d483007c384f1a87fcfba12332295.tar.gz koopatlas-ba959d67836d483007c384f1a87fcfba12332295.zip |
Added copying, proper top-dwn selection
Diffstat (limited to 'src/editorui/doodads.py')
-rw-r--r-- | src/editorui/doodads.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/editorui/doodads.py b/src/editorui/doodads.py index 6bb4576..89ccfc7 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,7 +460,8 @@ class KPEditorDoodad(KPEditorItem): pos = event.pos() bit = self.resizerPortionAt(pos.x(), pos.y()) - if self._layerRef() == KP.mapScene.currentLayer and bit: + # if self._layerRef() == KP.mapScene.currentLayer and bit: + if bit: event.accept() if (event.modifiers() & Qt.ShiftModifier): |