Skip to content

Commit cce054e

Browse files
committed
fix #68
1 parent 4474576 commit cce054e

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

src/mainEntry.ts

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ async function computeAnimationData(
125125
'animatedJava.dialogs.errors.predicateFilePathUndefined.body'
126126
),
127127
],
128-
width: 256
128+
width: 256,
129129
},
130130
})
131131
}
@@ -137,10 +137,12 @@ async function computeAnimationData(
137137
title: tl(
138138
'animatedJava.dialogs.errors.rigModelsExportFolderUndefined.title'
139139
),
140-
lines: [tl(
141-
'animatedJava.dialogs.errors.rigModelsExportFolderUndefined.body'
142-
)],
143-
width: 256
140+
lines: [
141+
tl(
142+
'animatedJava.dialogs.errors.rigModelsExportFolderUndefined.body'
143+
),
144+
],
145+
width: 256,
144146
},
145147
})
146148
}
@@ -280,6 +282,8 @@ MenuBar.update()
280282
const cb = () => {
281283
store.set('states', { default: {} })
282284
settings.update(DefaultSettings, true)
285+
//@ts-ignore;
286+
Project.UUID = globalThis.guid()
283287
bus.dispatch(EVENTS.LIFECYCLE.LOAD_MODEL, {})
284288
}
285289
Blockbench.on('new_project', cb)

0 commit comments

Comments
 (0)