Actually return the bounds for temp schematics

This commit is contained in:
David Vierra 2015-10-14 13:29:35 -10:00
parent cca9ed3a47
commit ca9617bb57

View File

@ -425,7 +425,8 @@ class PendingImport(QtCore.QObject):
log.info("Move: using temporary")
export = extractSchematicFromIter(sourceDim, self.selection)
schematic = showProgress(self.tr("Copying..."), export)
return schematic.getDimension(), schematic.bounds
tempDim = schematic.getDimension()
return tempDim, tempDim.bounds
# Use source as-is
if self.transformedDim is not None: