diff --git a/doc/ReleaseNotes.md b/doc/ReleaseNotes.md index 3157b744f6..b70594ffef 100644 --- a/doc/ReleaseNotes.md +++ b/doc/ReleaseNotes.md @@ -8,6 +8,7 @@ * Manifest validation no longer fails using `UTF-8 BOM` encoding when the schema header is on the first line * Upgrading a portable package with dev mode disabled will no longer remove the package from the PATH variable. * Fixed source open failure when there were multiple sources but less than two non-explicit sources. +* Corrected property of `Font` experimental feature to accurately reflect `fonts` as the required setting value ## Font Support Font Install and Uninstall via manifest and package source for user and machine scopes has been added. diff --git a/src/AppInstallerCommonCore/ExperimentalFeature.cpp b/src/AppInstallerCommonCore/ExperimentalFeature.cpp index caeb32d0fe..6996f834f6 100644 --- a/src/AppInstallerCommonCore/ExperimentalFeature.cpp +++ b/src/AppInstallerCommonCore/ExperimentalFeature.cpp @@ -76,8 +76,8 @@ namespace AppInstaller::Settings case Feature::Resume: return ExperimentalFeature{ "Resume", "resume", "https://aka.ms/winget-settings", Feature::Resume }; case Feature::Font: - return ExperimentalFeature{ "Font", "Font", "https://aka.ms/winget-settings", Feature::Font }; - + return ExperimentalFeature{ "Font", "fonts", "https://aka.ms/winget-settings", Feature::Font }; + default: THROW_HR(E_UNEXPECTED); }