Fix animations always playing when recording GIF

Fix missing translations on transform pivot tool
This commit is contained in:
JannisX11 2024-05-01 10:58:10 +02:00
parent c22ca7848a
commit 4d58a2e900
3 changed files with 2 additions and 2 deletions

View File

@ -982,7 +982,6 @@ BARS.defineActions(function() {
global: 'action.transform_space.global',
parent: 'action.transform_space.parent',
local: 'action.transform_space.local',
normal: {condition: () => Mesh.selected.length, name: true}
},
onChange() {
updateSelection();

View File

@ -561,7 +561,7 @@ const Screencam = {
vars.recording = true;
vars.loop = setInterval(() => {
if (vars.animation) {
if (vars.animation && options.play) {
Timeline.setTime(vars.interval*vars.frames / 1000);
Animator.preview(true);
}

View File

@ -1451,6 +1451,7 @@
"action.transform_space.local": "Local",
"action.transform_space.normal": "Normal",
"action.rotation_space": "Rotation Space",
"action.transform_pivot_space": "Pivot Transform Space",
"action.scale": "Scale...",
"action.scale.desc": "Scale the selected elements",
"action.rotate_cw": "Rotate %0 +90",