We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f362be commit 119df94Copy full SHA for 119df94
FreePIE.Core.Plugins/MousePlugin.cs
@@ -256,6 +256,18 @@ public int wheel
256
set { plugin.Wheel = value; }
257
}
258
259
+ public bool wheelUp
260
+ {
261
+ get { return plugin.Wheel == wheelMax; }
262
+ set { plugin.Wheel = value ? wheelMax : 0; }
263
+ }
264
+
265
+ public bool wheelDown
266
267
+ get { return plugin.Wheel == -wheelMax; }
268
+ set { plugin.Wheel = value ? -wheelMax : 0; }
269
270
271
public bool leftButton
272
{
273
get { return plugin.IsButtonDown(0); }
0 commit comments