mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 10:37: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.flags = {
|
||||
MOTION: 1 << 0,
|
||||
COUNT: 1 << 1,
|
||||
ARGUMENT: 1 << 2
|
||||
MOTION: 1 << 1,
|
||||
COUNT: 1 << 2,
|
||||
ARGUMENT: 1 << 3
|
||||
};
|
||||
|
||||
this.add = function(map)
|
||||
|
||||
Reference in New Issue
Block a user