Bug report #1057
Trivial bug in qgsmaptoolmovefeature.cpp
Status: | Closed | ||
---|---|---|---|
Priority: | Low | ||
Assignee: | nobody - | ||
Category: | Digitising | ||
Affected QGIS version: | Regression?: | No | |
Operating System: | All | Easy fix?: | No |
Pull Request or Patch supplied: | Resolution: | fixed | |
Crashes QGIS or corrupts data: | Copied to github as #: | 11117 |
Description
In QgsMapToolMoveFeature::canvasPressEvent variable searchRadius defined as integer but must be double as in other places.
- int searchRadius = settings.value("/qgis/digitizing/search_radius_vertex_edit", 10).toInt();
+ double searchRadius = settings.value("/qgis/digitizing/search_radius_vertex_edit", 10).toDouble();
History
#1 Updated by Marco Hugentobler over 16 years ago
- Resolution set to fixed
- Status changed from Open to Closed
Fixed in fdf71fde (SVN r8409). Thanks for reporting this.
Marco