dotnet / dotnet/wpf

Incorrect registry path of StylusLogic

Open
#11,239 5 comments 2 reactions 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.