1
0
mirror of https://github.com/Eugeny/tabby.git synced 2025-07-28 12:48:35 +00:00

fixed matchedHotkey deprecation - fixes , fixes

This commit is contained in:
Eugene Pankov
2021-07-09 09:46:54 +02:00
parent 26ff6f17e7
commit 833a348fdb

@@ -53,7 +53,7 @@ export class HotkeysService {
// deprecated
this.hotkey$.subscribe(h => this.matchedHotkey.emit(h))
this.matchedHotkey.subscribe = deprecate(s => this.matchedHotkey.subscribe(s), 'matchedHotkey is deprecated, use hotkey$')
this.matchedHotkey.subscribe = deprecate(s => this.hotkey$.subscribe(s), 'matchedHotkey is deprecated, use hotkey$')
}
/**