linebender / glazier

Deprecated Rust Window Creation Library
Apache License 2.0
206 stars 32 forks source link

Fix `PointerButtons` debug formatter. #142

Closed xStrom closed 1 year ago

xStrom commented 1 year ago

The old MouseButtons bitset had funky off-by-one storage. The new PointerButtons has more intuitive straight storage. This PR updates the debug formatter to match that new reality.

Easy way to test is with the shello example and clicking the primary mouse button. Without this PR it will print all zeroes, with this PR applied it will print correctly.