diff options
author | David Robillard <d@drobilla.net> | 2023-01-10 12:32:45 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-01-10 12:32:45 -0500 |
commit | e554f8c5ea5f812e7e0ce7d5c99129370c4c595a (patch) | |
tree | c3abf0307492acaae54dd52bae0f72d708a3b3ce /bindings/cpp/include/pugl/pugl.hpp | |
parent | bc7ce5e77224f276a97593b2d1c9f888dc63d1dc (diff) | |
download | pugl-e554f8c5ea5f812e7e0ce7d5c99129370c4c595a.tar.gz pugl-e554f8c5ea5f812e7e0ce7d5c99129370c4c595a.tar.bz2 pugl-e554f8c5ea5f812e7e0ce7d5c99129370c4c595a.zip |
Add PUGL_CURSOR_ALL_SCROLL
Diffstat (limited to 'bindings/cpp/include/pugl/pugl.hpp')
-rw-r--r-- | bindings/cpp/include/pugl/pugl.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<Cursor>(PUGL_CURSOR_UP_RIGHT_DOWN_LEFT) == - Cursor::upRightDownLeft, +static_assert(static_cast<Cursor>(PUGL_CURSOR_ALL_SCROLL) == Cursor::allScroll, ""); /// @copydoc PuglShowCommand |