Minor cleanup.

This commit is contained in:
Jeff Young 2023-07-16 13:56:09 +01:00
parent 63c83b3aed
commit 7f3839a179
1 changed files with 6 additions and 6 deletions

View File

@ -94,7 +94,6 @@ int SYMBOL_EDITOR_DRAWING_TOOLS::TwoClickPlace( const TOOL_EVENT& aEvent )
LIB_ITEM* item = nullptr; LIB_ITEM* item = nullptr;
bool isText = aEvent.IsAction( &EE_ACTIONS::placeSymbolText ); bool isText = aEvent.IsAction( &EE_ACTIONS::placeSymbolText );
COMMON_SETTINGS* common_settings = Pgm().GetCommonSettings(); COMMON_SETTINGS* common_settings = Pgm().GetCommonSettings();
wxString description;
m_toolMgr->RunAction( EE_ACTIONS::clearSelection ); m_toolMgr->RunAction( EE_ACTIONS::clearSelection );
@ -212,7 +211,6 @@ int SYMBOL_EDITOR_DRAWING_TOOLS::TwoClickPlace( const TOOL_EVENT& aEvent )
{ {
item = pinTool->CreatePin( VECTOR2I( cursorPos.x, -cursorPos.y ), symbol ); item = pinTool->CreatePin( VECTOR2I( cursorPos.x, -cursorPos.y ), symbol );
g_lastPinWeakPtr = item; g_lastPinWeakPtr = item;
description = _( "Add Pin" );
break; break;
} }
case LIB_TEXT_T: case LIB_TEXT_T:
@ -237,7 +235,6 @@ int SYMBOL_EDITOR_DRAWING_TOOLS::TwoClickPlace( const TOOL_EVENT& aEvent )
else else
item = text; item = text;
description = _( "Add Text" );
break; break;
} }
default: default:
@ -283,19 +280,22 @@ int SYMBOL_EDITOR_DRAWING_TOOLS::TwoClickPlace( const TOOL_EVENT& aEvent )
{ {
case LIB_PIN_T: case LIB_PIN_T:
pinTool->PlacePin( (LIB_PIN*) item ); pinTool->PlacePin( (LIB_PIN*) item );
item->ClearEditFlags();
commit.Push( _( "Add Pin" ) );
break; break;
case LIB_TEXT_T: case LIB_TEXT_T:
symbol->AddDrawItem( (LIB_TEXT*) item ); symbol->AddDrawItem( (LIB_TEXT*) item );
item->ClearEditFlags();
commit.Push( _( "Add Text" ) );
break; break;
default: default:
wxFAIL_MSG( "TwoClickPlace(): unknown type" ); wxFAIL_MSG( "TwoClickPlace(): unknown type" );
} }
item->ClearEditFlags();
item = nullptr; item = nullptr;
m_view->ClearPreview(); m_view->ClearPreview();
commit.Push( description );
m_frame->RebuildView(); m_frame->RebuildView();
} }
} }