Fix default follow threshold value
This commit is contained in:
parent
db2d865432
commit
6ec42f6fec
|
|
@ -68,7 +68,7 @@
|
|||
<description>Whether to remove any virtual displays when the effect is disabled</description>
|
||||
</entry>
|
||||
<entry name="SmoothFollowThreshold" type="Int">
|
||||
<default>15</default>
|
||||
<default>1</default>
|
||||
<min>1</min>
|
||||
<max>45</max>
|
||||
<label>Follow threshold (degrees)</label>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue