Ignore mouse events without any button state changes (#343)

This commit is contained in:
Henry Sloan
2021-08-12 01:26:46 -04:00
committed by Keavon Chambers
parent 18091dd3cd
commit d6ce9e16b7
2 changed files with 12 additions and 6 deletions
+1
View File
@@ -58,5 +58,6 @@ bitflags! {
const LEFT = 0b0000_0001;
const RIGHT = 0b0000_0010;
const MIDDLE = 0b0000_0100;
const NONE = 0b0000_0000;
}
}