We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4a6e34 commit fdf71fdCopy full SHA for fdf71fd
src/app/qgsmaptoolmovefeature.cpp
@@ -71,7 +71,7 @@ void QgsMapToolMoveFeature::canvasPressEvent(QMouseEvent * e)
71
//find first geometry under mouse cursor and store iterator to it
72
QgsPoint layerCoords = toLayerCoords((QgsMapLayer*)vlayer, e->pos());
73
QSettings settings;
74
- int searchRadius = settings.value("/qgis/digitizing/search_radius_vertex_edit", 10).toInt();
+ double searchRadius = settings.value("/qgis/digitizing/search_radius_vertex_edit", 10).toDouble();
75
QgsRect selectRect(layerCoords.x()-searchRadius, layerCoords.y()-searchRadius, \
76
layerCoords.x()+searchRadius, layerCoords.y()+searchRadius);
77
0 commit comments