Don't include text in footprint preview widget's autozoom.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/16794
This commit is contained in:
parent
92308698ba
commit
071d8af5d7
|
@ -1461,7 +1461,7 @@ bool FOOTPRINT::HitTest( const BOX2I& aRect, bool aContained, int aAccuracy ) co
|
||||||
if( !aRect.Intersects( GetBoundingBox( false, false ) ) )
|
if( !aRect.Intersects( GetBoundingBox( false, false ) ) )
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// The empty footprint dummy rectangle intersects the selection area.
|
// If there are no pads, zones, or drawings, allow intersection with text
|
||||||
if( m_pads.empty() && m_zones.empty() && m_drawings.empty() )
|
if( m_pads.empty() && m_zones.empty() && m_drawings.empty() )
|
||||||
return GetBoundingBox( true, false ).Intersects( arect );
|
return GetBoundingBox( true, false ).Intersects( arect );
|
||||||
|
|
||||||
|
|
|
@ -139,7 +139,7 @@ void FOOTPRINT_PREVIEW_PANEL::renderFootprint( std::shared_ptr<FOOTPRINT> aFootp
|
||||||
|
|
||||||
void FOOTPRINT_PREVIEW_PANEL::fitToCurrentFootprint()
|
void FOOTPRINT_PREVIEW_PANEL::fitToCurrentFootprint()
|
||||||
{
|
{
|
||||||
BOX2I bbox = m_currentFootprint->GetBoundingBox( true, false );
|
BOX2I bbox = m_currentFootprint->GetBoundingBox( false, false );
|
||||||
|
|
||||||
if( bbox.GetSize().x > 0 && bbox.GetSize().y > 0 )
|
if( bbox.GetSize().x > 0 && bbox.GetSize().y > 0 )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue