KiCad: make initial minimum main frame width show all icons.

Fixes lp:1780300

https://bugs.launchpad.net/kicad/+bug/1780300
This commit is contained in:
Wayne Stambaugh 2018-07-13 15:53:03 -04:00
parent eaf938c7e9
commit bded0cfc19
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ bool PGM_KICAD::OnPgmInit()
ReadHotkeyConfig( KICAD_MANAGER_FRAME_NAME, kicad_Manager_Hokeys_Descr );
KICAD_MANAGER_FRAME* frame = new KICAD_MANAGER_FRAME( NULL, wxT( "KiCad" ),
wxDefaultPosition, wxDefaultSize );
wxDefaultPosition, wxSize( 775, -1 ) );
App().SetTopWindow( frame );
Kiway.SetTop( frame );