From 6ec42f6feccc32a6827dd44b9ef161e1bb85108d Mon Sep 17 00:00:00 2001 From: wheaney <42350981+wheaney@users.noreply.github.com> Date: Wed, 17 Sep 2025 22:47:21 -0700 Subject: [PATCH] Fix default follow threshold value --- kwin/src/breezydesktopconfig.kcfg | 2 +- kwin/src/kcm/breezydesktopeffectkcm.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kwin/src/breezydesktopconfig.kcfg b/kwin/src/breezydesktopconfig.kcfg index 33db6a1..bb27f0c 100644 --- a/kwin/src/breezydesktopconfig.kcfg +++ b/kwin/src/breezydesktopconfig.kcfg @@ -68,7 +68,7 @@ Whether to remove any virtual displays when the effect is disabled - 15 + 1 1 45 diff --git a/kwin/src/kcm/breezydesktopeffectkcm.h b/kwin/src/kcm/breezydesktopeffectkcm.h index 4a8451e..4f705bd 100644 --- a/kwin/src/kcm/breezydesktopeffectkcm.h +++ b/kwin/src/kcm/breezydesktopeffectkcm.h @@ -59,7 +59,7 @@ private: bool m_driverStateInitialized = false; bool m_deviceConnected = false; bool m_smoothFollowEnabled = false; - int m_smoothFollowThreshold = 15; + int m_smoothFollowThreshold = 1; QString m_connectedDeviceBrand; QString m_connectedDeviceModel; QTimer m_statePollTimer; // periodic driver state polling