Cancel Add dimension leaves auto panning on

Fixes: lp:178551
* https://bugs.launchpad.net/kicad/+bug/178551
This commit is contained in:
Ronnie Gaensli 2018-08-06 10:15:58 +02:00 committed by Maciej Suminski
parent 7fa5456d71
commit 3ca84dca71
1 changed files with 4 additions and 0 deletions

View File

@ -525,6 +525,8 @@ int DRAWING_TOOL::DrawDimension( const TOOL_EVENT& aEvent )
if( TOOL_EVT_UTILS::IsCancelInteractive( *evt ) ) if( TOOL_EVT_UTILS::IsCancelInteractive( *evt ) )
{ {
m_controls->SetAutoPan( false );
if( step != SET_ORIGIN ) // start from the beginning if( step != SET_ORIGIN ) // start from the beginning
{ {
preview.Clear(); preview.Clear();
@ -663,6 +665,8 @@ int DRAWING_TOOL::DrawDimension( const TOOL_EVENT& aEvent )
if( step != SET_ORIGIN ) if( step != SET_ORIGIN )
delete dimension; delete dimension;
m_controls->SetAutoPan( false );
m_view->Remove( &preview ); m_view->Remove( &preview );
frame()->SetMsgPanel( board() ); frame()->SetMsgPanel( board() );
m_frame->SetNoToolSelected(); m_frame->SetNoToolSelected();