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 a828f38327
commit 0dda197d65
2 changed files with 12 additions and 6 deletions

View File

@@ -58,5 +58,6 @@ bitflags! {
const LEFT = 0b0000_0001;
const RIGHT = 0b0000_0010;
const MIDDLE = 0b0000_0100;
const NONE = 0b0000_0000;
}
}