mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-01-15 10:28:43 +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
|
// 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.random();
|
||||||
accent.render();
|
accent.render();
|
||||||
link.clear();
|
link.clear();
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
var version = (function() {
|
var version = (function() {
|
||||||
|
|
||||||
var current = "3.20.0";
|
var current = "3.20.1";
|
||||||
|
|
||||||
var compare = function(a, b) {
|
var compare = function(a, b) {
|
||||||
var pa = a.split(".");
|
var pa = a.split(".");
|
||||||
|
Loading…
Reference in New Issue
Block a user