Replace missing setting.

Fixes https://gitlab.com/kicad/code/kicad/issues/11453
This commit is contained in:
Jeff Young 2022-05-20 22:41:20 +01:00
parent d381fd8b29
commit a33e5c53be
1 changed files with 1 additions and 0 deletions

View File

@ -101,6 +101,7 @@ bool PANEL_DISPLAY_OPTIONS::TransferDataFromWindow()
cfg->m_Display.m_NetNames = m_ShowNetNamesOption->GetSelection();
cfg->m_Display.m_Live3DRefresh = m_live3Drefresh->GetValue();
cfg->m_CrossProbing.on_selection = m_checkCrossProbeOnSelection->GetValue();
cfg->m_CrossProbing.center_on_items = m_checkCrossProbeCenter->GetValue();
cfg->m_CrossProbing.zoom_to_fit = m_checkCrossProbeZoom->GetValue();
cfg->m_CrossProbing.auto_highlight = m_checkCrossProbeAutoHighlight->GetValue();
}