We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 29b1dd7 commit 8085200Copy full SHA for 8085200
src/analysis/vector/geometry_checker/qgsvectorlayerfeaturepool.cpp
@@ -135,12 +135,13 @@ void QgsVectorLayerFeaturePool::deleteFeature( QgsFeatureId fid )
135
136
void QgsVectorLayerFeaturePool::onGeometryChanged( QgsFeatureId fid, const QgsGeometry &geometry )
137
{
138
+ Q_UNUSED( geometry )
139
+
140
if ( isFeatureCached( fid ) )
141
142
QgsFeature feature;
143
getFeature( fid, feature );
- feature.setGeometry( geometry );
- updateFeature( feature );
144
+ refreshCache( feature );
145
}
146
147
0 commit comments