1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 14:27: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:
Viktor Kojouharov
2007-05-29 06:38:53 +00:00
parent 6feacb2603
commit 15b12af71a

View File

@@ -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)