We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e668a03 commit dbee006Copy full SHA for dbee006
src/bbmods/modelFormatMod.js
@@ -1,5 +1,5 @@
1
import * as EVENTS from '../constants/events'
2
-import { format as modelFormat } from '../modelFormat'
+import { format, format as modelFormat } from '../modelFormat'
3
import { bus } from '../util/bus'
4
import { wrapNumber } from '../util/misc'
5
@@ -14,7 +14,9 @@ ModelFormat.prototype.convertTo = function convertTo() {
14
var old_format = Format
15
this.select()
16
Modes.options.edit.select()
17
-
+ if (Format.id === format.id) {
18
+ Project.UUID = guid()
19
+ }
20
// Box UV
21
if (!this.optional_box_uv) Project.box_uv = this.box_uv
22
0 commit comments