From e554f8c5ea5f812e7e0ce7d5c99129370c4c595a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 10 Jan 2023 12:32:45 -0500 Subject: Add PUGL_CURSOR_ALL_SCROLL --- bindings/cpp/include/pugl/pugl.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bindings') diff --git a/bindings/cpp/include/pugl/pugl.hpp b/bindings/cpp/include/pugl/pugl.hpp index bea4deb..2119bda 100644 --- a/bindings/cpp/include/pugl/pugl.hpp +++ b/bindings/cpp/include/pugl/pugl.hpp @@ -378,10 +378,10 @@ enum class Cursor { upDown, ///< @copydoc PUGL_CURSOR_UP_DOWN upLeftDownRight, ///< @copydoc PUGL_CURSOR_UP_LEFT_DOWN_RIGHT upRightDownLeft, ///< @copydoc PUGL_CURSOR_UP_RIGHT_DOWN_LEFT + allScroll, ///< @copydoc PUGL_CURSOR_ALL_SCROLL }; -static_assert(static_cast(PUGL_CURSOR_UP_RIGHT_DOWN_LEFT) == - Cursor::upRightDownLeft, +static_assert(static_cast(PUGL_CURSOR_ALL_SCROLL) == Cursor::allScroll, ""); /// @copydoc PuglShowCommand -- cgit v1.2.1