We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fb1b17 commit 6cb35a7Copy full SHA for 6cb35a7
1 file changed
src/vs/workbench/services/keybinding/browser/keyboardLayoutService.ts
@@ -220,10 +220,6 @@ export class BrowserKeyboardMapperFactory {
220
221
private _setKeyboardData(layoutInfo: IKeyboardLayoutInfo, rawMapping: IKeyboardMapping): void {
222
this._layoutInfo = layoutInfo;
223
- if (this._initialized && BrowserKeyboardMapperFactory._equals(this._rawMapping, rawMapping)) {
224
- // nothing to do...
225
- return;
226
- }
227
this._initialized = true;
228
this._rawMapping = rawMapping;
229
this._keyboardMapper = new CachedKeyboardMapper(BrowserKeyboardMapperFactory._createKeyboardMapper(this._layoutInfo, this._rawMapping));
0 commit comments