|
@@ -219,7 +219,7 @@ export async function preDrawImage(_currentTask: Task) {
|
|
|
.map<[number, number]>((v, index, ary) =>
|
|
|
index % 2 === 0 ? [v, ary[index + 1]] : [0, 0]
|
|
|
)
|
|
|
- .filter((v) => v[0] === 0 && v[1] === 0);
|
|
|
+ .filter((v) => v[0] > 0 && v[1] > 0);
|
|
|
|
|
|
const maxSplitConfig = Math.max(...store.setting.splitConfig);
|
|
|
maxSliceWidth =
|