소스 검색

Make selector rect stroke width non-scaling

dev_h
Finn Krein 3 년 전
부모
커밋
9e1bfffa80
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2
    1
      client-data/tools/hand/hand.js

+ 2
- 1
client-data/tools/hand/hand.js 파일 보기

@@ -75,7 +75,8 @@
75 75
 	shape.width.baseVal.value = 0;
76 76
 	shape.height.baseVal.value = 0;
77 77
 	shape.setAttribute("stroke", "black");
78
-	shape.setAttribute("stroke-width", 3);
78
+	shape.setAttribute("stroke-width", 1);
79
+	shape.setAttribute("vector-effect", "non-scaling-stroke");
79 80
 	shape.setAttribute("fill", "none");
80 81
 	shape.setAttribute("stroke-dasharray", "5 5");
81 82
 	shape.setAttribute("opacity", 1);

Loading…
취소
저장