Skip to content

Commit

Permalink
Version 1.4.261
Browse files Browse the repository at this point in the history
Fixed mouse movement by touchpad not working
  • Loading branch information
Jays2Kings committed Jun 1, 2015
1 parent 5945185 commit 39cf56c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DS4Control/MouseCursor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void touchesBegan(TouchpadEventArgs arg)
private byte lastTouchID;
public void touchesMoved(TouchpadEventArgs arg, bool dragging)
{
if ((!dragging && arg.touches.Length != 0) || (dragging && arg.touches.Length < 1))
if ((!dragging && arg.touches.Length != 1) || (dragging && arg.touches.Length < 1))
return;
int deltaX, deltaY;
if (arg.touches[0].touchID != lastTouchID)
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.4.26")]
[assembly: AssemblyFileVersion("1.4.26")]
[assembly: AssemblyVersion("1.4.261")]
[assembly: AssemblyFileVersion("1.4.261")]

0 comments on commit 39cf56c

Please sign in to comment.