Merge pull request #25 from samuelthomas2774/master
Fixed bug introduced in #24
This commit is contained in:
commit
de5fd43b84
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue