Unset forced cursor before leaving two-click place.

Fixes https://gitlab.com/kicad/code/kicad/issues/11607

(cherry picked from commit 79a0ce9137)
This commit is contained in:
Jeff Young 2022-05-14 22:38:04 +01:00
parent 68d9b3cbf7
commit c117708220
1 changed files with 1 additions and 0 deletions

View File

@ -290,6 +290,7 @@ int SYMBOL_EDITOR_DRAWING_TOOLS::TwoClickPlace( const TOOL_EVENT& aEvent )
controls->SetAutoPan( false );
controls->CaptureCursor( false );
controls->ForceCursorPosition( false );
m_frame->GetCanvas()->SetCurrentCursor( KICURSOR::ARROW );
return 0;
}