Try harder to save schematic properties panel width

Fixes https://gitlab.com/kicad/code/kicad/-/issues/15957
This commit is contained in:
Jon Evans 2023-11-01 08:42:06 -04:00
parent 81818cfb1e
commit bc42546609
1 changed files with 1 additions and 0 deletions

View File

@ -239,6 +239,7 @@ void SCH_EDIT_FRAME::SaveSettings( APP_SETTINGS_BASE* aCfg )
wxAuiPaneInfo& propertiesPane = m_auimgr.GetPane( PropertiesPaneName() );
cfg->m_AuiPanels.show_properties = propertiesPane.IsShown();
cfg->m_AuiPanels.properties_splitter = m_propertiesPanel->SplitterProportion();
cfg->m_AuiPanels.properties_panel_width = m_propertiesPanel->GetSize().x;
}
}