mirror of
https://github.com/zombieFox/nightTab.git
synced 2024-12-27 00:59:00 +01:00
[bug] fix random accent keyboard state check
This commit is contained in:
parent
4d7e7389b8
commit
253cadf081
@ -67,7 +67,7 @@ var keyboard = (function() {
|
||||
};
|
||||
};
|
||||
// ctrl+alt+r
|
||||
if (event.ctrlKey && event.altKey && event.keyCode == 82) {
|
||||
if (state.get().theme.accent.random.active && event.ctrlKey && event.altKey && event.keyCode == 82) {
|
||||
accent.random();
|
||||
accent.render();
|
||||
link.clear();
|
||||
|
@ -1,6 +1,6 @@
|
||||
var version = (function() {
|
||||
|
||||
var current = "3.20.0";
|
||||
var current = "3.20.1";
|
||||
|
||||
var compare = function(a, b) {
|
||||
var pa = a.split(".");
|
||||
|
Loading…
Reference in New Issue
Block a user