[QGIS-Developer] QgsVectorLayer featureAdded not firing

Catania, Luke A ERDC-RDE-GRL-VA CIV Luke.A.Catania at erdc.dren.mil
Thu Oct 24 11:12:31 PDT 2024


I do not understand why after creating a layer and adding it to the layer panel then start editing why after drawing on the map canvas, the featureAdded signal is not firing?


I have tried many and beforeCommitChanges and afterCommitChanges work but not featureAdded which is what I use in many other parts of my code.

vlayer.startEditing()
vlayer.featureAdded.connect(lambda: self.signal_event("featureAdded"))


        actions = self.digitizing_toolbar.actions()
        for action in actions:
            if (action.text() == ''):
                if (action.defaultWidget().menu() != None
                    and action.defaultWidget().defaultAction().text() != 'Digitize with Segment'):
                    for sub_action in action.defaultWidget().menu().actions():
                        if (sub_action.text() == 'Digitize with Segment'):
                            action.defaultWidget().setDefaultAction(sub_action)
                            action.defaultWidget().menu().setActiveAction(sub_action)
                            action.defaultWidget().defaultAction().setChecked(True)
                            action.defaultWidget().defaultAction().activate(0)

        iface.actionAddFeature().trigger()

Luke Catania
US Army ERDC-GRL
JCMS Site Planning Developer

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osgeo.org/pipermail/qgis-developer/attachments/20241024/5aa83f2d/attachment.htm>


More information about the QGIS-Developer mailing list