From 030e33913ae992c83b24c0ba06ef777183f85594 Mon Sep 17 00:00:00 2001 From: Jarod42 Date: Thu, 30 May 2024 21:38:51 +0200 Subject: [PATCH] [bugfix] Fix typo: `ScrollRightDown = ScrollRight | ScrollLeft` -> `ScrollDown | ScrollLeft`. --- src/include/interface.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/include/interface.h b/src/include/interface.h index 5436cdaa59..620479f878 100644 --- a/src/include/interface.h +++ b/src/include/interface.h @@ -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 = ScrollRight | ScrollLeft; /// scroll right + down +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 /*---------------------------------------------------------------------------- -- Variables