mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
Fix 'equals' predicate in SpatialJoinSummary
This fixes a typo in SpatialJoinSummary.py "Join attributes by location (summary)" algorithm that prevents the 'equals' predicate to work
This commit is contained in:
parent
abd4d0ee11
commit
afcf048e23
@ -85,7 +85,7 @@ class SpatialJoinSummary(QgisAlgorithm):
|
||||
self.predicates = (
|
||||
('intersects', self.tr('intersects')),
|
||||
('contains', self.tr('contains')),
|
||||
('equals', self.tr('equals')),
|
||||
('isEqual', self.tr('equals')),
|
||||
('touches', self.tr('touches')),
|
||||
('overlaps', self.tr('overlaps')),
|
||||
('within', self.tr('within')),
|
||||
|
Loading…
x
Reference in New Issue
Block a user