diff --git a/browser/src/map/handler/Map.Keyboard.js b/browser/src/map/handler/Map.Keyboard.js index 4c210671c4ce..2e42840b8a9b 100644 --- a/browser/src/map/handler/Map.Keyboard.js +++ b/browser/src/map/handler/Map.Keyboard.js @@ -817,7 +817,7 @@ L.Map.Keyboard = L.Handler.extend({ return true; } - if (this._isCtrlKey(e) && !e.shiftKey && !e.altKey && e.key === ' ' && app.UI.language.fromURL === 'de' && this._map.getDocType() === 'text') { + if (this._isCtrlKey(e) && !e.shiftKey && e.altKey && e.keyCode === this.keyCodes.S && app.UI.language.fromURL === 'de' && this._map.getDocType() === 'text') { this._map.fire('focussearch'); e.preventDefault(); return true;