mirror of
https://github.com/JannisX11/blockbench.git
synced 2025-01-30 15:42:42 +08:00
Fix #934 Plugin API Documentation button
Fix #927 Opening Backup folder action not working Fix issue with transforming/rotating groups
This commit is contained in:
parent
1960ccbe6a
commit
b882107af4
@ -1429,7 +1429,7 @@ const BARS = {
|
||||
category: 'file',
|
||||
condition: () => isApp,
|
||||
click: function (e) {
|
||||
shell.openItem(app.getPath('userData')+osfs+'backups')
|
||||
shell.openPath(app.getPath('userData')+osfs+'backups')
|
||||
}
|
||||
})
|
||||
new Action('settings_window', {
|
||||
|
@ -702,7 +702,7 @@ const MenuBar = {
|
||||
{name: 'menu.help.developer', id: 'developer', icon: 'fas.fa-wrench', children: [
|
||||
'reload_plugins',
|
||||
{name: 'menu.help.plugin_documentation', id: 'plugin_documentation', icon: 'fa-book', click: () => {
|
||||
Blockbench.openLink('https://jannisx11.github.io/blockbench-docs/');
|
||||
Blockbench.openLink('https://www.blockbench.net/wiki/api/index');
|
||||
}},
|
||||
'open_dev_tools',
|
||||
{name: 'menu.help.developer.reset_storage', icon: 'fas.fa-hdd', click: () => {
|
||||
|
@ -386,7 +386,9 @@ const Canvas = {
|
||||
var arr = selected.slice()
|
||||
if (Format.bone_rig && Group.selected) {
|
||||
Group.selected.forEachChild(obj => {
|
||||
arr.safePush(obj)
|
||||
if (obj instanceof OutlinerElement) {
|
||||
arr.safePush(obj)
|
||||
}
|
||||
})
|
||||
if (arr.length === selected.length) {
|
||||
Canvas.updateAllBones()
|
||||
|
Loading…
Reference in New Issue
Block a user