dev #653

Merged
ysCha merged 3 commits from dev into dev-deploy 2026-02-11 18:39:08 +09:00
2 changed files with 3 additions and 3 deletions

View File

@ -179,7 +179,7 @@ export function useRoofFn() {
polygon.set('fill', null)
polygon.set('fill', pattern)
polygon.roofMaterial = roofMaterial
setPolygonLinesActualSize(polygon)
setPolygonLinesActualSize(polygon, true)
changeCorridorDimensionText()
polygon.canvas?.renderAll()
} catch (e) {

View File

@ -1573,13 +1573,13 @@ export function useSurfaceShapeBatch({ isHidden, setIsHidden }) {
currentObject.fire('modified')
currentObject.fire('polygonMoved')
// 화살표와 선 다시 그리기
setPolygonLinesActualSize(currentObject, true)
drawDirectionArrow(currentObject)
setTimeout(() => {
setPolygonLinesActualSize(currentObject)
changeSurfaceLineType(currentObject)
currentObject.dirty = true
currentObject.setCoords()
canvas.requestRenderAll()
canvas.renderAll()
setCurrentObject(currentObject)
}, 500)
}