grid color saved in config file

This commit is contained in:
dickelbeck 2009-03-02 14:50:13 +00:00
parent fa9230e2e5
commit d03d8815cf
1 changed files with 10 additions and 1 deletions

View File

@ -271,6 +271,14 @@ static PARAM_CFG_SETCOLOR ColorLayerErcErrCfg
RED /* Default value */
);
static PARAM_CFG_SETCOLOR ColorLayerGridCfg
(
INSETUP,
wxT( "ColorGrid" ), /* Ident String */
&g_GridColor, /* Parameter address */
DARKDARKGRAY /* Default value */
);
static PARAM_CFG_INT PlotMarginCfg
(
INSETUP,
@ -493,7 +501,7 @@ PARAM_CFG_BASE* ParamCfgList[] =
&ColorLayerBusCfg,
&ColorLayerJunctionCfg,
&ColorLayerLLabelCfg,
&ColorLayerHierarLabelCfg,
&ColorLayerHierarLabelCfg,
&ColorLayerGLabelCfg,
&ColorLayerPinFunCfg,
&ColorLayerPinNumCfg,
@ -513,6 +521,7 @@ PARAM_CFG_BASE* ParamCfgList[] =
&ColorLayerNoConnectCfg,
&ColorLayerErcWarnCfg,
&ColorLayerErcErrCfg,
&ColorLayerGridCfg,
&PlotMarginCfg,
&HPGLSpeed,