@zhangqingcq/vgce 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -47,7 +47,7 @@
|
|
47
47
|
fill="none"
|
48
48
|
fill-opacity="0"
|
49
49
|
stroke="#DE4517"
|
50
|
-
:stroke-width="props.itemInfo.props['stroke-width'].val + 1"
|
50
|
+
:stroke-width="Math.ceil(props.itemInfo.props['stroke-width'].val * 1.2) + 1"
|
51
51
|
stroke-linecap="round"
|
52
52
|
stroke-linejoin="round"
|
53
53
|
v-show="props.itemInfo.selected || props.itemInfo.id === globalStore.handle_svg_info?.info.id"
|
@@ -143,7 +143,7 @@
|
|
143
143
|
:r="props.itemInfo.props.point_r.val + 1"
|
144
144
|
fill="none"
|
145
145
|
fill-opacity="0"
|
146
|
-
stroke-width="1"
|
146
|
+
:stroke-width="Math.ceil(props.itemInfo.props.point_r.val * 0.2) + 1"
|
147
147
|
stroke="#DE4517"
|
148
148
|
v-show="props.itemInfo.selected || props.itemInfo.id === globalStore.handle_svg_info?.info.id"
|
149
149
|
/>
|