Don't show quick keys if they're disabled
This commit is contained in:
parent
e17fce6f6d
commit
f4db7c2647
1 changed files with 1 additions and 1 deletions
|
@ -480,7 +480,7 @@ weechat.directive('inputBar', function() {
|
|||
}
|
||||
|
||||
// Alt key down -> display quick key legend
|
||||
if ($event.type === "keydown" && code === 18 && !$event.ctrlKey && !$event.shiftKey) {
|
||||
if ($event.type === "keydown" && code === 18 && !$event.ctrlKey && !$event.shiftKey && settings.enableQuickKeys) {
|
||||
$rootScope.showQuickKeys = true;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue