diff --git a/src/Magnum/Platform/GlfwApplication.h b/src/Magnum/Platform/GlfwApplication.h index 77e82bf72..f61565f4b 100644 --- a/src/Magnum/Platform/GlfwApplication.h +++ b/src/Magnum/Platform/GlfwApplication.h @@ -250,8 +250,8 @@ class GlfwApplication { /** * @brief Mouse scroll event * - * Called when a scrolling device is used (mouse wheel or scrolling area - * on touchpad). Default implementation does nothing. + * Called when a scrolling device is used (mouse wheel or scrolling + * area on touchpad). Default implementation does nothing. */ virtual void mouseScrollEvent(MouseScrollEvent& event); diff --git a/src/Magnum/Platform/Sdl2Application.h b/src/Magnum/Platform/Sdl2Application.h index b18bf7c4c..304a3bfce 100644 --- a/src/Magnum/Platform/Sdl2Application.h +++ b/src/Magnum/Platform/Sdl2Application.h @@ -1140,7 +1140,12 @@ class Sdl2Application::MouseEvent: public Sdl2Application::InputEvent { /** @brief Button */ constexpr Button button() const { return _button; } - /** @brief Position */ + /** + * @brief Position + * + * For whell events this contains the horizontal and vertical scroll + * amount. + */ constexpr Vector2i position() const { return _position; } /**