olivierdalang / VectorBender

VectorBender is a QGis plugin
GNU General Public License v3.0
37 stars 15 forks source link

Suggestion : group edit #22

Open djes opened 5 years ago

djes commented 5 years ago

This plugin is really useful, and greatly appreciated ! Could I suggest the possibility to alter a whole group with a little loop like

        # selected layers
        selectedLayers = iface.layerTreeView().selectedLayersRecursive()
        for layer in selectedLayers:
            layer.startEditing()
            layer.triggerRepaint()

Anyway, thank you very much :)

olivierdalang commented 4 years ago

Ideally, it would be even better to repackage the functionality of the plugin as a processing algorithm, this way we could achieve this using batch mode from the processing toolbox.

If this feature would be useful to you, you can consider sponsoring it's development, as unfortunately I'm not using the plugin in my current projects...

djes commented 4 years ago

Thank you, I'll consider this.