From 7f4e82bdb3978edac6f3b9891d7f43b076ff805b Mon Sep 17 00:00:00 2001 From: Jarod42 Date: Fri, 31 May 2024 16:59:19 +0200 Subject: [PATCH] [bugfix] Fix typo correctly this time (and reorder to have name order matching sub part order). --- 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 620479f878..b9425bc2ec 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 = 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