Revert default rotation space to local

Fix theme thumbnail compatibility issue with older browsers
This commit is contained in:
JannisX11 2024-05-13 18:48:26 +02:00
parent c90267df7b
commit a5efa1c578
2 changed files with 2 additions and 2 deletions

View File

@ -492,7 +492,7 @@ const CustomTheme = {
}
}
Merge.string(app, theme, 'css');
theme.thumbnail ??= '';
if (!theme.thumbnail) theme.thumbnail = '';
Merge.string(app, theme, 'thumbnail');
this.updateColors();
this.updateSettings();

View File

@ -909,7 +909,7 @@ BARS.defineActions(function() {
new BarSelect('rotation_space', {
condition: {modes: ['edit', 'animate', 'pose'], tools: ['rotate_tool']},
category: 'transform',
value: 'parent',
value: 'local',
options: {
global: 'action.transform_space.global',
parent: 'action.transform_space.parent',