obv 수정

This commit is contained in:
Macbook
2026-06-09 22:04:30 +09:00
parent 0a7d547ea9
commit 27c60be1e9
3 changed files with 74 additions and 42 deletions
+4 -1
View File
@@ -479,7 +479,10 @@ function normalizeSignalLineIndicatorPlots(
const order = ['plot0', 'plot1'];
return order.indexOf(a.id) - order.indexOf(b.id);
});
return { plots: nextPlots, plotVisibility: { ...plotVisibility } };
const nextVis = { ...plotVisibility };
if (nextVis.plot0 !== false) nextVis.plot0 = true;
if (nextVis.plot1 !== false) nextVis.plot1 = true;
return { plots: nextPlots, plotVisibility: nextVis };
}
const regSignal = registryPlots.find(p => p.id === 'plot1');