Re: [Qgis-developer] possible vector edit commit bug, please try to reproduce to confirm

2014-08-20 Thread Trevor Wiens
Thanks Bernhard. I did try uninstalling my Python plugins with no effect. It however should not make any difference because I can recreate the issue manually which should not be affected by any plugins. What I've done for my plugin, as I'm already using the pyspatialite library, is to replace qgis

Re: [Qgis-developer] possible vector edit commit bug, please try to reproduce to confirm

2014-08-19 Thread Bernhard Ströbl
Hi Trevor, just guessing: Is your plugin applying the editingStarted()/editingStopped() signals? If not there are plugins around that do it and are known to slow down QGIS. So if it is not your plugin first thing would be to unload _all_ plugins and see if the problem persists. If not reload

[Qgis-developer] possible vector edit commit bug, please try to reproduce to confirm

2014-08-19 Thread Trevor Wiens
I'm working on a QGIS plugin where I need to commit changes every time a new feature is added in an SQLite database. I was using layer.startEditing() layer.addFeature(feature, False) OR layer.addFeature(feature, True) layer.commitChanges() After about 10 to 15 features the system began to slow si