Merge branch 'feature/roofline-edit' of https://git.hanasys.jp/qcast3/qcast-front into feature/roofline-edit2

This commit is contained in:
hyojun.choi 2026-06-16 17:09:58 +09:00
commit f5e8b91969
2 changed files with 4 additions and 2 deletions

View File

@ -276,7 +276,8 @@ export function useRoofShapePassivitySetting(id) {
} else { } else {
stroke = '#000000' stroke = '#000000'
} }
line.set({ stroke, strokeWidth: 4, selectable: false, visible: true }) // [2026-06-16] 저장 후에도 외벽선 클릭 선택 허용. 드래그는 lockMovement(useCanvas), 보조선 가로채기는 z-order(18abbeb9)로 별도 차단
line.set({ stroke, strokeWidth: 4, selectable: true, visible: true })
}) })
const wall = addPolygonByLines(lines, { name: POLYGON_TYPE.WALL, fill: 'transparent', stroke: 'black' }) const wall = addPolygonByLines(lines, { name: POLYGON_TYPE.WALL, fill: 'transparent', stroke: 'black' })

View File

@ -167,7 +167,8 @@ export function useRoofShapeSetting(id) {
line.set({ line.set({
stroke, stroke,
strokeWidth, strokeWidth,
selectable: false, // [2026-06-16] 저장 후에도 외벽선 클릭 선택 허용. 드래그는 lockMovement(useCanvas), 보조선 가로채기는 z-order(18abbeb9)로 별도 차단
selectable: true,
visible: true, visible: true,
}) })