모듈 선택 표시

This commit is contained in:
yjnoh 2025-04-02 11:12:23 +09:00
parent 0a5b6ce132
commit 655fef744c

View File

@ -198,7 +198,7 @@ export function useCanvasEvent() {
if (selected?.length > 0) {
selected.forEach((obj) => {
if (obj.type === 'QPolygon' && obj.name !== 'module') {
if (obj.type === 'QPolygon') {
obj.set({ stroke: 'red' })
}
})
@ -235,7 +235,7 @@ export function useCanvasEvent() {
if (selected?.length > 0) {
selected.forEach((obj) => {
if (obj.type === 'QPolygon' && obj.name !== 'module') {
if (obj.type === 'QPolygon') {
obj.set({ stroke: 'red' })
}
})