차트로딩중 적용

This commit is contained in:
Macbook
2026-05-30 03:35:34 +09:00
parent e7a6c22cc2
commit 961609242c
6 changed files with 70 additions and 60 deletions
+4 -3
View File
@@ -869,11 +869,12 @@ export class ChartManager {
this._reapplyAllPatternMarkers();
this._removeExtraSubPanes();
// ② 새 순서로 재추가 (병합 호스트 → 멤버 순)
// ② 새 순서로 재추가 (병합 호스트 → 멤버 순) — 레이아웃은 마지막에 한 번만
this._indRunning = false;
for (const ind of sortIndicatorsForPaneLoad(inds)) {
const sorted = sortIndicatorsForPaneLoad(inds);
for (const ind of sorted) {
if (this._indicatorLoadStale(loadGen)) break;
await this.addIndicator(ind);
await this.addIndicator(ind, { skipLayout: true });
}
if (this._indicatorLoadStale(loadGen)) return;