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:
parent
4233886a05
commit
df590b1109
|
@ -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 ),
|
||||
|
|
Loading…
Reference in New Issue