Add NONE flag to KeyModifiers (#392)

This commit is contained in:
Ron B 2020-03-10 14:37:02 +02:00 committed by GitHub
parent 33b90c85c9
commit e620c6b8be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -337,6 +337,7 @@ bitflags! {
const SHIFT = 0b0000_0001; const SHIFT = 0b0000_0001;
const CONTROL = 0b0000_0010; const CONTROL = 0b0000_0010;
const ALT = 0b0000_0100; const ALT = 0b0000_0100;
const NONE = 0b0000_0000;
} }
} }