PcbNew: center on items rather than zooming to them on find
Fixes: lp:1751480 * https://bugs.launchpad.net/kicad/+bug/1751480
This commit is contained in:
parent
675bd39e8a
commit
88fb4c57e5
|
@ -1161,9 +1161,7 @@ void SELECTION_TOOL::findCallback( BOARD_ITEM* aItem )
|
||||||
if( aItem )
|
if( aItem )
|
||||||
{
|
{
|
||||||
select( aItem );
|
select( aItem );
|
||||||
EDA_RECT bbox = aItem->GetBoundingBox();
|
getView()->SetCenter( aItem->GetPosition() );
|
||||||
BOX2D viewport( VECTOR2D( bbox.GetOrigin() ), VECTOR2D( bbox.GetSize() ) );
|
|
||||||
getView()->SetViewport( viewport );
|
|
||||||
|
|
||||||
// Inform other potentially interested tools
|
// Inform other potentially interested tools
|
||||||
m_toolMgr->ProcessEvent( SelectedEvent );
|
m_toolMgr->ProcessEvent( SelectedEvent );
|
||||||
|
|
Loading…
Reference in New Issue