Code formatting
This commit is contained in:
parent
98616da017
commit
9127e09815
|
@ -24,10 +24,8 @@
|
|||
#include <pcb_general_settings.h>
|
||||
|
||||
PCB_GENERAL_SETTINGS::PCB_GENERAL_SETTINGS( FRAME_T aFrameType )
|
||||
: m_colorsSettings( aFrameType )
|
||||
: m_frameType( aFrameType ), m_colorsSettings( aFrameType )
|
||||
{
|
||||
m_frameType = aFrameType;
|
||||
|
||||
if( m_frameType == FRAME_PCB )
|
||||
{
|
||||
Add( "LegacyAutoDeleteOldTrack", &m_legacyAutoDeleteOldTrack, true );
|
||||
|
@ -41,6 +39,7 @@ PCB_GENERAL_SETTINGS::PCB_GENERAL_SETTINGS( FRAME_T aFrameType )
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
void PCB_GENERAL_SETTINGS::Load( wxConfigBase* aCfg )
|
||||
{
|
||||
m_colorsSettings.Load( aCfg );
|
||||
|
|
|
@ -44,15 +44,11 @@ public:
|
|||
void Load( wxConfigBase* aCfg ) override;
|
||||
void Save( wxConfigBase* aCfg ) override;
|
||||
|
||||
COLORS_DESIGN_SETTINGS m_colorsSettings;
|
||||
|
||||
COLORS_DESIGN_SETTINGS& Colors()
|
||||
{
|
||||
return m_colorsSettings;
|
||||
}
|
||||
|
||||
FRAME_T m_frameType;
|
||||
|
||||
bool m_legacyDrcOn = true; // Not stored, always true when starting pcbnew,
|
||||
// false only on request during routing, and
|
||||
// always for temporary use
|
||||
|
@ -67,6 +63,10 @@ public:
|
|||
|
||||
MAGNETIC_PAD_OPTION_VALUES m_magneticPads = CAPTURE_CURSOR_IN_TRACK_TOOL;
|
||||
MAGNETIC_PAD_OPTION_VALUES m_magneticTracks = CAPTURE_CURSOR_IN_TRACK_TOOL;
|
||||
|
||||
protected:
|
||||
const FRAME_T m_frameType;
|
||||
COLORS_DESIGN_SETTINGS m_colorsSettings;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue