Compare commits

...

2 Commits

Author SHA1 Message Date
AlexandreS
d1f3645b0c Add missing keys in keyboard condition/action (#7421)
- Added Left and Right bracket and the Menu keys
2025-02-24 10:55:22 +01:00
D8H
623a832c38 Fix a regression that hid all 3D models in the editor (#7418)
Don't show in changelog
2025-02-24 10:54:09 +01:00
2 changed files with 5 additions and 2 deletions

View File

@@ -3248,7 +3248,7 @@ module.exports = {
}
_updateDefaultTransformation() {
if (!this._clonedModel3D || !this._threeModelGroup) {
if (!this._clonedModel3D) {
// Model is not ready - nothing to do.
return;
}

View File

@@ -79,9 +79,12 @@ export const keyNames = [
'Quote',
'Slash',
'BackSlash',
'Tilde',
'Equal',
'Dash',
'Menu',
'LBracket',
'RBracket',
'Tilde',
'Space',
'Back',
'Tab',