-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Description
Description
In the file StylusLogic.cs , Line 74 :
private const string WispRootKey = @"Software\Microsoft\Wisp\";
In the file StylusLogic.cs , Line 79 :
private const string WispPenSystemEventParametersKey = WispRootKey + @"Software\Microsoft\Wisp\Pen\SysEventParameters";
Then, the WispPenSystemEventParametersKey value actually is @"Software\Microsoft\Wisp\Software\Microsoft\Wisp\Pen\SysEventParameters";
Maybe the path is wrong, I think the correct WispPenSystemEventParametersKey value should be WispRootKey + @"Pen\SysEventParameters"
You can open the Registry Editor to verify it
Reproduction Steps
NA
Expected behavior
NA
Actual behavior
NA
Regression?
NA
Known Workarounds
private const string WispPenSystemEventParametersKey = WispRootKey + @"Pen\SysEventParameters";
private const string WispTouchConfigKey = WispRootKey + @"Touch";
Configuration
No response
Other information
No response