Skip to content

Commit 95ded30

Browse files
committed
Capitalize missed const string
1 parent 022a827 commit 95ded30

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

DevocubFilters/AntiChatter.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class Antichatter : Interpolator
4646
+ " Increase Strength to 4-10 to get harper. Decrease Strength to 1-2 to get more smoothing.\n"
4747
+ "\n"
4848
+ " - Low latency: Set Offset Y to 0 (and potentially set Latency to 1-10 ms. However, with some settings this can break smoothing, usually OffsetY 0 is enough to being able to go to lowest latency).";
49-
private const string Prediction_Tooltip =
49+
private const string PREDICTION_TOOLTIP =
5050
"Prediction - How it works: It adds a predicted point to smoothing algorithm. It helps to preserve sharpness of movement, helps with small movements,\n"
5151
+ " Low values (~10-15ms) of smoothing latency can cause problems for cursor movement. It's very preferred to use at least 10-15ms of smoothing latency, 20-40 ms is even better and recommended.\n"
5252
+ " In some cases, cursor can even outdistance real position (similar to Wacom 6.3.95 drivers).\n"
@@ -97,19 +97,19 @@ public float Latency
9797
[Property("Antichatter Offset Y"), DefaultPropertyValue(1f), ToolTip(ANTICHATTER_TOOLTIP)]
9898
public float AntichatterOffsetY { set; get; }
9999

100-
[BooleanProperty("Prediction", ""), ToolTip(Prediction_Tooltip)]
100+
[BooleanProperty("Prediction", ""), ToolTip(PREDICTION_TOOLTIP)]
101101

102102
public bool PredictionEnabled { set; get; }
103-
[Property("Prediction Strength"), DefaultPropertyValue(1.1f), ToolTip(Prediction_Tooltip)]
103+
[Property("Prediction Strength"), DefaultPropertyValue(1.1f), ToolTip(PREDICTION_TOOLTIP)]
104104
public float PredictionStrength { set; get; }
105105

106-
[Property("Prediction Sharpness"), DefaultPropertyValue(1f), ToolTip(Prediction_Tooltip)]
106+
[Property("Prediction Sharpness"), DefaultPropertyValue(1f), ToolTip(PREDICTION_TOOLTIP)]
107107
public float PredictionSharpness { set; get; }
108108

109-
[Property("Prediction Offset X"), DefaultPropertyValue(3f), ToolTip(Prediction_Tooltip)]
109+
[Property("Prediction Offset X"), DefaultPropertyValue(3f), ToolTip(PREDICTION_TOOLTIP)]
110110
public float PredictionOffsetX { set; get; }
111111

112-
[Property("Prediction Offset Y"), DefaultPropertyValue(0.3f), ToolTip(Prediction_Tooltip)]
112+
[Property("Prediction Offset Y"), DefaultPropertyValue(0.3f), ToolTip(PREDICTION_TOOLTIP)]
113113
public float PredictionOffsetY { set; get; }
114114

115115
private const float THRESHOLD = 0.9f;

0 commit comments

Comments
 (0)