We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 511b881 commit 1f4bf4eCopy full SHA for 1f4bf4e
python/plugins/processing/algs/qgis/Clip.py
@@ -119,7 +119,7 @@ def processAlgorithm(self, progress):
119
if new_geom.wkbType() == QGis.WKBUnknown or QgsWKBTypes.flatType(new_geom.geometry().wkbType()) == QgsWKBTypes.GeometryCollection:
120
int_com = in_feat.constGeometry().combine(new_geom)
121
int_sym = in_feat.constGeometry().symDifference(new_geom)
122
- if not int_com or not int_sym:
+ if not int_com or not int_sym:
123
ProcessingLog.addToLog(ProcessingLog.LOG_ERROR,
124
self.tr('GEOS geoprocessing error: One or more '
125
'input features have invalid geometry.'))
0 commit comments