Fixed bug with pressing B

JsSucks/BetterDiscordApp#22
This commit is contained in:
Samuel Elliott 2018-01-20 22:42:22 +00:00
parent abda678167
commit 7d1416da67
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
this.hideSettings();
return;
}
if (!e.metaKey && !e.ctrlKey && e.key !== 'b') return;
if (!e.metaKey && !e.ctrlKey || e.key !== 'b') return;
!this.active ? this.showSettings() : this.hideSettings();