Skip to content

Commit 9ab5319

Browse files
author
skhmt
committed
fixed bug with mouseWheel
1 parent 3efa408 commit 9ab5319

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

displays/mfd.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ let mfd = (function () {
263263
m.mU = m.mouseOff;
264264

265265
m.mouseWheel = function (clicks) {
266-
if (typeof click !== 'number') console.error('Bad input, use mfd.mouseWheel(clicks)');
266+
if (typeof clicks !== 'number') console.error('Bad input, use mfd.mouseWheel(clicks)');
267267
else queue({action: 'mousewheel', data: clicks});
268268
return this;
269269
};

docs/readme.md

+2
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,8 @@ It can also be used for desktop macros, or pretty much anything really.
122122

123123
# Changelog
124124

125+
* 1.7.1 - 7Apr19
126+
* Fixed a bug with `mouseWheel`, it should work now
125127
* 1.7.0 - 20Jan19
126128
* Fixed a bug that allowed unauthorized users to replay commands in some situations
127129
* Added API to use media buttons, `mfd.media(_button_)`

src/MFD.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
fun main(args: Array<String>) {
1111

1212
val name = "MFD"
13-
val version = "1.7.0"
13+
val version = "1.7.1"
1414

1515
var port = 80
1616
var verbose = false

0 commit comments

Comments
 (0)