Remove unused advanced config variable
This commit is contained in:
parent
9c1a160fcd
commit
16dea1d7e7
|
@ -205,8 +205,6 @@ static const wxChar AllowManualCanvasScale[] = wxT( "AllowManualCanvasScale" );
|
|||
|
||||
static const wxChar UpdateUIEventInterval[] = wxT( "UpdateUIEventInterval" );
|
||||
|
||||
static const wxChar ShowPropertiesPanel[] = wxT( "ShowPropertiesPanel" );
|
||||
|
||||
static const wxChar V3DRT_BevelHeight_um[] = wxT( "V3DRT_BevelHeight_um" );
|
||||
|
||||
static const wxChar V3DRT_BevelExtentFactor[] = wxT( "V3DRT_BevelExtentFactor" );
|
||||
|
@ -349,7 +347,6 @@ ADVANCED_CFG::ADVANCED_CFG()
|
|||
m_CompactSave = false;
|
||||
m_UpdateUIEventInterval = 0;
|
||||
m_ShowRepairSchematic = false;
|
||||
m_ShowPropertiesPanel = false;
|
||||
m_EnableGenerators = false;
|
||||
m_EnableGit = false;
|
||||
m_EnableEeschemaPrintCairo = false;
|
||||
|
@ -542,9 +539,6 @@ void ADVANCED_CFG::loadSettings( wxConfigBase& aCfg )
|
|||
wxString traceMasks;
|
||||
configParams.push_back( new PARAM_CFG_WXSTRING( true, AC_KEYS::TraceMasks, &traceMasks, wxS( "" ) ) );
|
||||
|
||||
configParams.push_back( new PARAM_CFG_BOOL( true, AC_KEYS::ShowPropertiesPanel,
|
||||
&m_ShowPropertiesPanel, false ) );
|
||||
|
||||
// Load the config from file
|
||||
wxConfigLoadSetups( &aCfg, configParams );
|
||||
|
||||
|
|
|
@ -235,11 +235,6 @@ public:
|
|||
|
||||
bool m_AllowManualCanvasScale;
|
||||
|
||||
/**
|
||||
* Show the properties panel in applications that it hasn't been fully released for
|
||||
*/
|
||||
bool m_ShowPropertiesPanel;
|
||||
|
||||
/**
|
||||
* 3D-Viewer, Raytracing
|
||||
* Bevel height of layer items. Controls the start of curvature normal on the edge.
|
||||
|
|
Loading…
Reference in New Issue