Skip to content

Commit 9ee7f94

Browse files
committed
Fix Font feature property name
1 parent 53044ac commit 9ee7f94

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

doc/ReleaseNotes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
* Manifest validation no longer fails using `UTF-8 BOM` encoding when the schema header is on the first line
99
* Upgrading a portable package with dev mode disabled will no longer remove the package from the PATH variable.
1010
* Fixed source open failure when there were multiple sources but less than two non-explicit sources.
11+
* Corrected property of `Font` experimental feature to accurately reflect `fonts` as the required setting value
1112

1213
## Font Support
1314
Font Install and Uninstall via manifest and package source for user and machine scopes has been added.

src/AppInstallerCommonCore/ExperimentalFeature.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ namespace AppInstaller::Settings
7676
case Feature::Resume:
7777
return ExperimentalFeature{ "Resume", "resume", "https://aka.ms/winget-settings", Feature::Resume };
7878
case Feature::Font:
79-
return ExperimentalFeature{ "Font", "Font", "https://aka.ms/winget-settings", Feature::Font };
80-
79+
return ExperimentalFeature{ "Font", "fonts", "https://aka.ms/winget-settings", Feature::Font };
80+
8181
default:
8282
THROW_HR(E_UNEXPECTED);
8383
}

0 commit comments

Comments
 (0)