File tree 2 files changed +2
-5
lines changed
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -900,12 +900,8 @@ export class LogicFlow {
900
900
const {
901
901
grid : { size = 1 } ,
902
902
editConfigModel : { snapGrid } ,
903
- gridSize,
904
903
} = 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 )
909
905
}
910
906
}
911
907
Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ export class GraphModel {
162
162
this . background = background
163
163
if ( typeof grid === 'object' && options . snapGrid ) {
164
164
// 开启网格对齐时才根据网格尺寸设置步长
165
+ // TODO:需要让用户设置成 0 吗?后面可以讨论一下
165
166
this . gridSize = grid . size || 1 // 默认 gridSize 设置为 1
166
167
}
167
168
this . theme = setupTheme ( options . style )
You can’t perform that action at this time.
0 commit comments