Reduce the "default" maximum scale factor down a magnitude.

Testing reveals 25000 is absolute overkill. A 4mil trace at 2000 is already an entire GAL canvas on 1080p.

Eeschema already uses its own setting of 1000 max.
This commit is contained in:
Marek Roszko 2020-10-19 19:03:30 -04:00
parent 4233886a05
commit df590b1109
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ void VIEW::OnDestroy( VIEW_ITEM* aItem )
VIEW::VIEW( bool aIsDynamic ) :
m_enableOrderModifier( true ),
m_scale( 4.0 ),
m_minScale( 0.2 ), m_maxScale( 25000.0 ),
m_minScale( 0.2 ), m_maxScale( 5000.0 ),
m_mirrorX( false ), m_mirrorY( false ),
m_painter( NULL ),
m_gal( NULL ),