diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-08-08 11:53:12 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2020-08-08 11:53:12 +0200 |
commit | e50482f994b6ebcce864a412111d376e99205cdb (patch) | |
tree | ff3192c6aaf213c4922521bed988e4ed4147f537 /app/bin/misc2.c | |
parent | d3897ce090dbeb220ed2c782f095597e417cf3cc (diff) | |
parent | b623f5953691b2a0614e6f1f4def86bdbb9a4113 (diff) |
Update upstream source from tag 'upstream/5.2.0Beta2.1'
Update to upstream version '5.2.0Beta2.1'
with Debian dir 1576f25f4c1496abfed44af31ead67d32c7be650
Diffstat (limited to 'app/bin/misc2.c')
-rw-r--r-- | app/bin/misc2.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app/bin/misc2.c b/app/bin/misc2.c index 0dbb57d..19226cc 100644 --- a/app/bin/misc2.c +++ b/app/bin/misc2.c @@ -53,15 +53,17 @@ EXPORT long units = 0; /**< measurement units: 0 = English, 1 = metric */ EXPORT long checkPtInterval = 10; +EXPORT long autosaveChkPoints = 2; EXPORT DIST_T curScaleRatio; EXPORT char * curScaleName; EXPORT DIST_T trackGauge; EXPORT long labelScale = 8; -EXPORT long labelEnable = ((1<<0)|LABELENABLE_LENGTHS|LABELENABLE_ENDPT_ELEV|LABELENABLE_CARS); +EXPORT long labelEnable = (LABELENABLE_ENDPT_ELEV|LABELENABLE_CARS); EXPORT long labelWhen = 2; -EXPORT long colorLayers = 0; -EXPORT long zoomCorner = 0; +EXPORT long colorTrack = 0; +EXPORT long colorDraw = 0; +EXPORT long constrainMain = 0; EXPORT long hideSelectionWindow = 0; EXPORT long angleSystem = 0; EXPORT DIST_T minLength = 0.1; @@ -156,10 +158,6 @@ EXPORT void DoChangeNotification( long changes ) * */ - -#define SCALE_ANY (-2) -#define SCALE_DEMO (-1) - typedef struct { char * scale; DIST_T ratio; @@ -467,7 +465,9 @@ SetScale( SCALEINX_T newScaleInx ) SetScaleDescGauge((SCALEINX_T)newScaleInx); - wPrefSetString( "misc", "scale", curScaleName ); + + if (!inPlayback) + wPrefSetString( "misc", "scale", curScaleName ); // now load the minimum radius for the newly selected scale LoadLayoutMinRadiusPref(curScaleName, curScale->R[0]); |