Skip to content

Commit 6e334d6

Browse files
committedNov 21, 2014
[processing] Added missing field type to vector tools
1 parent ac0edda commit 6e334d6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎python/plugins/processing/tools/vector.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,8 @@ def checkMinDistance(point, index, distance, points):
358358
TYPE_MAP = {
359359
str : QVariant.String,
360360
float: QVariant.Double,
361-
int: QVariant.Int
361+
int: QVariant.Int,
362+
bool: QVariant.Bool
362363
}
363364

364365
def _fieldName(f):

0 commit comments

Comments
 (0)
Please sign in to comment.