Do not emit handleBoundsChangedDone for non-changes.

This commit is contained in:
David Vierra 2015-10-03 01:16:10 -10:00
parent 1167d930ed
commit 23f71061fc

View File

@ -170,6 +170,7 @@ class PendingImportNode(Node, QtCore.QObject):
importMoved = QtCore.Signal(object, object)
def handleBoundsChangedDone(self, bounds, oldBounds):
if bounds.origin != oldBounds.origin:
self.importMoved.emit(bounds.origin, oldBounds.origin)
def setPreviewRotation(self, rots):