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:
JannisX11 2021-06-24 16:15:52 +02:00
parent 1960ccbe6a
commit b882107af4
3 changed files with 5 additions and 3 deletions

View File

@ -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', {

View File

@ -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: () => {

View File

@ -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()