[QGIS Commit] r12543 - trunk/qgis/src/app
svn_qgis at osgeo.org
svn_qgis at osgeo.org
Sun Dec 20 12:13:44 EST 2009
Author: mhugent
Date: 2009-12-20 12:13:44 -0500 (Sun, 20 Dec 2009)
New Revision: 12543
Modified:
trunk/qgis/src/app/qgsfieldcalculator.cpp
Log:
Fix bug that prevented attribute table to update correctly after field calculator usage
Modified: trunk/qgis/src/app/qgsfieldcalculator.cpp
===================================================================
--- trunk/qgis/src/app/qgsfieldcalculator.cpp 2009-12-20 17:12:13 UTC (rev 12542)
+++ trunk/qgis/src/app/qgsfieldcalculator.cpp 2009-12-20 17:13:44 UTC (rev 12543)
@@ -179,7 +179,7 @@
}
// stop blocking layerModified signals and make sure that one layerModified signal is emitted
- mVectorLayer->blockSignals( true );
+ mVectorLayer->blockSignals( false );
mVectorLayer->setModified( true, false );
}
More information about the QGIS-commit
mailing list