Footprint Viewer: resolve canvas type after menus are created
SaveSettings can't be called until the menus are in place Fixes https://gitlab.com/kicad/code/kicad/-/issues/13243
This commit is contained in:
parent
0958b9778b
commit
cc2b107649
|
@ -216,9 +216,6 @@ FOOTPRINT_VIEWER_FRAME::FOOTPRINT_VIEWER_FRAME( KIWAY* aKiway, wxWindow* aParent
|
|||
LoadSettings( config() );
|
||||
GetGalDisplayOptions().m_axesEnabled = true;
|
||||
|
||||
// Call resolveCanvasType after loading settings:
|
||||
resolveCanvasType();
|
||||
|
||||
// Create the manager and dispatcher & route draw panel events to the dispatcher
|
||||
m_toolManager = new TOOL_MANAGER;
|
||||
m_toolManager->SetEnvironment( GetBoard(), drawPanel->GetView(),
|
||||
|
@ -249,6 +246,9 @@ FOOTPRINT_VIEWER_FRAME::FOOTPRINT_VIEWER_FRAME( KIWAY* aKiway, wxWindow* aParent
|
|||
ReCreateLibraryList();
|
||||
UpdateTitle();
|
||||
|
||||
// Call resolveCanvasType after loading settings:
|
||||
resolveCanvasType();
|
||||
|
||||
// If a footprint was previously loaded, reload it
|
||||
if( getCurNickname().size() && getCurFootprintName().size() )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue