전략평가 돋보기 기능 추가

This commit is contained in:
Macbook
2026-06-16 14:04:25 +09:00
parent b55036a75c
commit 8eb6e4d47b
5 changed files with 153 additions and 63 deletions
+1 -1
View File
@@ -1142,7 +1142,7 @@ const TradingChart: React.FC<TradingChartProps> = ({
const onPanPointerDown = (e: PointerEvent) => {
if (!canPanRef.current || e.button !== 0) return;
const target = e.target as HTMLElement | null;
if (target?.closest('[data-no-chart-pan], .chart-right-toolbar, .pane-legend-item, .pane-drag-handle, .pane-btn, .candle-pane-controls')) {
if (target?.closest('[data-no-chart-pan], .chart-magnifier, .chart-right-toolbar, .pane-legend-item, .pane-drag-handle, .pane-btn, .candle-pane-controls')) {
return;
}
const pt = isChartPlotPointer(e.clientX, e.clientY);