From 82588a7fc9169d14a6e916ff28d6b9bea130b8dd Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Mon, 9 Feb 2026 07:10:16 -0500 Subject: [PATCH] chore: remove unused privates from PlatformScreen --- src/lib/deskflow/PlatformScreen.h | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/lib/deskflow/PlatformScreen.h b/src/lib/deskflow/PlatformScreen.h index 242d71007..9dba6bf17 100644 --- a/src/lib/deskflow/PlatformScreen.h +++ b/src/lib/deskflow/PlatformScreen.h @@ -100,19 +100,4 @@ protected: Converts a sides mask (e.g. LeftMask | RightMask) to a string representation (e.g. "LR"). */ static std::string sidesMaskToString(uint32_t sides); - -private: - /*! - * \brief m_clientScrollDirection - * This member contains client scroll direction. - * This member is used only on client side. - */ - bool m_invertScrollDirection = false; - - /** - * @brief m_yScrollScale - * This member is used to scale the y scroll speed - * It is only used on the client side - */ - double m_yScrollScale = 1.0; };