Add reference image as blueprint by default when in side view

Fix missing translation for Rotate UV
This commit is contained in:
JannisX11 2023-05-21 14:10:06 +02:00
parent f79bbb4bea
commit 99feeb409b
2 changed files with 3 additions and 0 deletions

View File

@ -104,6 +104,7 @@ class ReferenceImage {
}
addAsReference(save) {
Project.reference_images.push(this);
if (Preview.selected && Preview.selected.isOrtho) this.changeLayer('blueprint');
this.scope = 'project';
this.update();
if (save) this.save();
@ -111,6 +112,7 @@ class ReferenceImage {
}
addAsGlobalReference(save) {
ReferenceImage.global.push(this);
if (Preview.selected && Preview.selected.isOrtho) this.changeLayer('blueprint');
this.scope = 'global';
this.update();
if (save) this.save();

View File

@ -1940,6 +1940,7 @@
"uv_editor.all_faces": "All",
"uv_editor.no_faces": "None",
"uv_editor.rotated": "Rotated",
"uv_editor.rotate_uv": "Rotate UV",
"uv_editor.scale_uv": "Scale UV",
"uv_editor.auto_cull": "Cullface To Self",
"uv_editor.copied": "Copied Face",