Skip to content

Commit

Permalink
[bugfix] Fix typo correctly this time (and reorder to have name order…
Browse files Browse the repository at this point in the history
… matching sub part order).
  • Loading branch information
Jarod42 committed May 31, 2024
1 parent eb3c6ed commit b0b4e84
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/include/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,10 @@ constexpr unsigned int ScrollUp = 1; /// scroll up only
constexpr unsigned int ScrollDown = 2; /// scroll down only
constexpr unsigned int ScrollLeft = 4; /// scroll left only
constexpr unsigned int ScrollRight = 8; /// scroll right only
constexpr unsigned int ScrollLeftUp = ScrollUp | ScrollLeft; /// scroll left + up
constexpr unsigned int ScrollLeftDown = ScrollDown | ScrollLeft; /// scroll left + down
constexpr unsigned int ScrollRightUp = ScrollUp | ScrollRight; /// scroll right + up
constexpr unsigned int ScrollRightDown = ScrollDown | ScrollLeft; /// scroll right + down
constexpr unsigned int ScrollLeftUp = ScrollLeft | ScrollUp; /// scroll left + up
constexpr unsigned int ScrollLeftDown = ScrollLeft | ScrollDown; /// scroll left + down
constexpr unsigned int ScrollRightUp = ScrollRight | ScrollUp; /// scroll right + up
constexpr unsigned int ScrollRightDown = ScrollRight | ScrollDown ; /// scroll right + down

/*----------------------------------------------------------------------------
-- Variables
Expand Down

0 comments on commit b0b4e84

Please sign in to comment.