[HTML5] Editor: ensure canvas focus when switching tabs.
(cherry picked from commit b148ea2a64
)
This commit is contained in:
parent
adb93d7120
commit
5abe08f484
1 changed files with 4 additions and 0 deletions
4
misc/dist/html/editor.html
vendored
4
misc/dist/html/editor.html
vendored
|
@ -284,6 +284,10 @@
|
|||
tabs.forEach(function (elem) {
|
||||
if (elem.id == 'tab-' + name) {
|
||||
elem.style.display = 'block';
|
||||
if (name == 'editor' || name == 'game') {
|
||||
const canvas = document.getElementById(name + '-canvas');
|
||||
canvas.focus();
|
||||
}
|
||||
} else {
|
||||
elem.style.display = 'none';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue