Ticket #1057 (closed defect: fixed)

Opened 5 years ago

Last modified 5 years ago

Trivial bug in qgsmaptoolmovefeature.cpp

Reported by: shader Owned by: nobody
Priority: major: does not work as expected Milestone:
Component: Digitising Version: Trunk
Keywords: Cc:
Platform Version: Platform: All
Must Fix for Release: No Awaiting user input: no

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();

Change History

Changed 5 years ago by mhugent

  • status changed from new to closed
  • resolution set to fixed

Fixed in r8408. Thanks for reporting this.

Marco

Note: See TracTickets for help on using tickets.