mirror of
https://github.com/JannisX11/blockbench.git
synced 2024-11-21 01:13:37 +08:00
Fix beta issues
This commit is contained in:
parent
f178d9eedf
commit
65e720a2e6
@ -2715,7 +2715,8 @@ Interface.definePanels(function() {
|
||||
this.textures.forEach(tex => {
|
||||
if (tex.frameCount > count) count = tex.frameCount;
|
||||
});
|
||||
return count > 1;
|
||||
if (count == 1) return 0;
|
||||
return count;
|
||||
},
|
||||
unselect(event) {
|
||||
if (Blockbench.hasFlag('dragging_textures')) return;
|
||||
|
@ -2390,7 +2390,6 @@
|
||||
"preview_scene.minecraft_sunset": "Sunset",
|
||||
"preview_scene.minecraft_night": "Night",
|
||||
"preview_scene.minecraft_desert": "Desert",
|
||||
"preview_scene.minecraft_oceant": "Ocean",
|
||||
"preview_scene.minecraft_underwater": "Underwater",
|
||||
"preview_scene.minecraft_ocean": "Ocean",
|
||||
"preview_scene.minecraft_coral_reef": "Coral Reef",
|
||||
|
Loading…
Reference in New Issue
Block a user