Incorrect registry path of StylusLogic
- Dominant language
- C#
- Stars
- 7.7k
- Forks
- 1.3k
- Avg merge
- 1d 11h
- Merged PRs (30d)
- 61
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_
Contributor guide
Assessment
This issue has not been assessed yet.