diff options
| author | Colin Noga <Tempus@chronometry.ca> | 2012-05-12 18:49:08 -0500 | 
|---|---|---|
| committer | Colin Noga <Tempus@chronometry.ca> | 2012-05-12 18:49:08 -0500 | 
| commit | e037c2d4256e2975e50d00517526794dff444f0d (patch) | |
| tree | 866248cb5f6e2a66e708f89c5c574c683281233d /src/editorui/doodads.py | |
| parent | 225b688b188d22fe00976b2febc03f78ca3b2d7e (diff) | |
| download | koopatlas-e037c2d4256e2975e50d00517526794dff444f0d.tar.gz koopatlas-e037c2d4256e2975e50d00517526794dff444f0d.zip | |
Fixed up some formatting, made the animation panel into a dock widget, added a delay value to doodad animations and implemented it editor-side
Diffstat (limited to 'src/editorui/doodads.py')
| -rw-r--r-- | src/editorui/doodads.py | 10 | 
1 files changed, 2 insertions, 8 deletions
| diff --git a/src/editorui/doodads.py b/src/editorui/doodads.py index 07eca43..6bb4576 100644 --- a/src/editorui/doodads.py +++ b/src/editorui/doodads.py @@ -365,8 +365,8 @@ class KPEditorDoodad(KPEditorItem):  		self._updateSize()  		self._updateTransform() -		self.anmButton = self.DoodadAnmButton(self._doodadRef) -		self.anmProxy = self.HiddenProxy(self.anmButton, self, self.boundingRect().right() - 101, self.boundingRect().bottom() - 25) +		# self.anmButton = self.DoodadAnmButton(self._doodadRef) +		# self.anmProxy = self.HiddenProxy(self.anmButton, self, self.boundingRect().right() - 101, self.boundingRect().bottom() - 25)  		self.setAcceptHoverEvents(True) @@ -377,7 +377,6 @@ class KPEditorDoodad(KPEditorItem):  			KPEditorDoodad.SELECTION_PEN = QtGui.QPen(Qt.red, 1, Qt.DotLine) -  	def _updatePixmap(self):  		pixmap = self.source[1] @@ -418,11 +417,6 @@ class KPEditorDoodad(KPEditorItem):  		if self.isSelected():  			painter.setPen(self.SELECTION_PEN)  			painter.drawRect(self._selectionRect) - -			self.anmProxy.show() - -		else: -			self.anmProxy.hide()  	def _itemMoved(self, oldX, oldY, newX, newY): | 
