pcbnew: Disable capture cursor in measure tool

When starting the measure tool, the cursor should not be captured until
we begin the measurement.

Fixes: lp:1806486
* https://bugs.launchpad.net/kicad/+bug/1806486
This commit is contained in:
Seth Hillbrand 2018-12-05 19:58:07 -08:00
parent f9dfbe6f4d
commit 3d98c82217
1 changed files with 1 additions and 0 deletions

View File

@ -1225,6 +1225,7 @@ int EDIT_TOOL::MeasureTool( const TOOL_EVENT& aEvent )
controls.ShowCursor( true );
controls.SetAutoPan( false );
controls.CaptureCursor( false );
while( auto evt = Wait() )
{