mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 17:47:59 +01:00
changed the flags back. don't use 1 << 0 for any of the flags, since the 'default' one is 0
This commit is contained in:
@@ -76,9 +76,9 @@ function Mappings()
|
|||||||
this.user = [];
|
this.user = [];
|
||||||
|
|
||||||
this.flags = {
|
this.flags = {
|
||||||
MOTION: 1 << 0,
|
MOTION: 1 << 1,
|
||||||
COUNT: 1 << 1,
|
COUNT: 1 << 2,
|
||||||
ARGUMENT: 1 << 2
|
ARGUMENT: 1 << 3
|
||||||
};
|
};
|
||||||
|
|
||||||
this.add = function(map)
|
this.add = function(map)
|
||||||
|
|||||||
Reference in New Issue
Block a user