Skip to content

Commit

Permalink
v4.6.3 [ci-build]
Browse files Browse the repository at this point in the history
  • Loading branch information
JannisX11 committed Feb 2, 2023
1 parent 76d52cd commit 69078ca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions js/interface/actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -986,8 +986,9 @@ class BarSelect extends Widget {
this.onChange(this, event);
}
})
let title = this.getNameFor(key);
button.addEventListener('mouseenter', event => {
this.node.firstElementChild.firstChild.textContent = this.name + ': ' + button.title;
this.node.firstElementChild.firstChild.textContent = this.name + ': ' + title;
})
}

Expand Down Expand Up @@ -1030,8 +1031,9 @@ class BarSelect extends Widget {
this.onChange(this, event);
}
})
let title = this.getNameFor(key);
button.addEventListener('mouseenter', event => {
node.firstElementChild.firstChild.textContent = this.name + ': ' + button.title;
node.firstElementChild.firstChild.textContent = this.name + ': ' + title;
})
}
}
Expand Down
2 changes: 1 addition & 1 deletion js/webpack/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Blockbench",
"description": "Low-poly modeling and animation software",
"version": "4.6.2",
"version": "4.6.3",
"license": "GPL-3.0-or-later",
"author": {
"name": "JannisX11",
Expand Down
Loading

0 comments on commit 69078ca

Please sign in to comment.