Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small patches #307

Merged
merged 5 commits into from
Sep 21, 2020
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion OpenTabletDriver.Plugin/Output/AbsoluteOutputMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ public virtual void Read(IDeviceReport report)
VirtualTablet.SetPosition(pos);
}
}
HandleBinding(report);
}

internal Vector2 Transpose(ITabletReport report)
Expand Down
1 change: 0 additions & 1 deletion OpenTabletDriver.Plugin/Output/RelativeOutputMode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ public virtual void Read(IDeviceReport report)
}
}
}
HandleBinding(report);
}

protected Vector2? Transpose(ITabletReport report)
Expand Down
7 changes: 7 additions & 0 deletions OpenTabletDriver.UX/DaemonWatchdog.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;
using System.Timers;

namespace OpenTabletDriver.UX
Expand Down Expand Up @@ -28,6 +29,12 @@ public class DaemonWatchdog: IDisposable

public void Start()
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
daemonProcess.StartInfo.FileName = "OpenTabletDriver.Daemon.exe";
daemonProcess.StartInfo.Arguments = null;
}

InfinityGhost marked this conversation as resolved.
Show resolved Hide resolved
this.daemonProcess.Start();
this.watchdogTimer.Start();
this.watchdogTimer.Elapsed += (sender, e) =>
Expand Down
4 changes: 2 additions & 2 deletions OpenTabletDriver/Configurations/Wacom/CTL-472.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"InputReportLength": 10,
"OutputReportLength": 0,
"ReportParser": null,
"FeatureInitReport": null,
"FeatureInitReport": "AgI=",
"OutputInitReport": null
},
"AlternateDigitizerIdentifier": {
Expand All @@ -15,7 +15,7 @@
"InputReportLength": 11,
"OutputReportLength": 0,
"ReportParser": "OpenTabletDriver.Vendors.SkipByteTabletReportParser",
"FeatureInitReport": null,
"FeatureInitReport": "AgI=",
"OutputInitReport": null
},
"AuxilaryDeviceIdentifier": {
Expand Down