This commit is contained in:
李志鹏
2026-01-20 14:10:10 +08:00
parent 25ad9799f8
commit dbd1651a37
4 changed files with 22 additions and 22 deletions

View File

@@ -155,11 +155,11 @@
@changeFillScale="
(e) => changeFillScale(e, v)
"
@inputFill_Gap="
(x, y) => inputFill_Gap(x, y, v)
@inputFillGap="
(x, y) => inputFillGap(x, y, v)
"
@changeFill_Gap="
(x, y) => changeFill_Gap(x, y, v)
@changeFillGap="
(x, y) => changeFillGap(x, y, v)
"
/>
</template>
@@ -484,7 +484,7 @@
props.commandManager.execute(cmd);
};
// 改变填充间隙
const inputFill_Gap = (gapX, gapY, obj) => {
const inputFillGap = (gapX, gapY, obj) => {
const cmd = new FillRepeatGapChangeCommand({
canvas: props.canvas,
layers: layers,
@@ -497,7 +497,7 @@
});
cmd.execute();
};
const changeFill_Gap = (gapX, gapY, obj) => {
const changeFillGap = (gapX, gapY, obj) => {
if (obj.oldFill_) {
obj.fill_ = { ...obj.oldFill_ };
delete obj.oldFill_;