Skip to content

Commit ecdf666

Browse files
committed
fix(core): 优化更新gridSize的相关逻辑
1 parent dd001c7 commit ecdf666

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

packages/core/src/LogicFlow.tsx

+1-5
Original file line numberDiff line numberDiff line change
@@ -900,12 +900,8 @@ export class LogicFlow {
900900
const {
901901
grid: { size = 1 },
902902
editConfigModel: { snapGrid },
903-
gridSize,
904903
} = this.graphModel
905-
// 开启网格对齐且当前画布网格尺寸与网格对齐尺寸不一致时,或者关闭网格对齐且当前画布网格尺寸不为1时,更新画布网格尺寸
906-
if ((snapGrid && gridSize !== size) || (!snapGrid && gridSize !== 1)) {
907-
this.graphModel.updateGridSize(snapGrid ? size : 1)
908-
}
904+
this.graphModel.updateGridSize(snapGrid ? size : 1)
909905
}
910906
}
911907

packages/core/src/model/GraphModel.ts

+1
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ export class GraphModel {
162162
this.background = background
163163
if (typeof grid === 'object' && options.snapGrid) {
164164
// 开启网格对齐时才根据网格尺寸设置步长
165+
// TODO:需要让用户设置成 0 吗?后面可以讨论一下
165166
this.gridSize = grid.size || 1 // 默认 gridSize 设置为 1
166167
}
167168
this.theme = setupTheme(options.style)

0 commit comments

Comments
 (0)