Is there a signal emitted that I can have code execute after a feature rotation is completed from the advanced digitizing toolbar?
I call the rotate tool via the code below and upon completing of the rotate with a mouse click, I want to close the edit session. def rotateFeature(self): # Get all actions actions = iface.mainWindow().findChildren(QAction) # Check the action action = [x for x in actions if x.objectName()=='mActionRotateFeature'][0] # Run the action action.trigger() Luke
_______________________________________________ QGIS-Developer mailing list QGIS-Developer@lists.osgeo.org List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer