Version 1.4.261

Fixed mouse movement by touchpad not working
This commit is contained in:
jays2kings 2015-06-01 19:57:16 -04:00
parent 5945185fbc
commit 39cf56c71a
2 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ namespace DS4Windows
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)

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 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")]