diff --git a/doc/ReleaseNotes.md b/doc/ReleaseNotes.md index d1358f5c5e..6508936277 100644 --- a/doc/ReleaseNotes.md +++ b/doc/ReleaseNotes.md @@ -17,3 +17,4 @@ To use the feature, try `winget source edit winget-font` to set the Explicit sta * Portable Packages now use the correct directory separators regardless of which convention is used in the manifest * `--suppress-initial-details` now works with `winget configure test` * `--suppress-initial-details` no longer requires `--accept-configuration-agreements` +* Corrected property of `Font` experimental feature to accurately reflect `fonts` as the required setting value diff --git a/src/AppInstallerCommonCore/ExperimentalFeature.cpp b/src/AppInstallerCommonCore/ExperimentalFeature.cpp index bc7a377dca..4195d3a927 100644 --- a/src/AppInstallerCommonCore/ExperimentalFeature.cpp +++ b/src/AppInstallerCommonCore/ExperimentalFeature.cpp @@ -78,10 +78,10 @@ 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 }; case Feature::SourceEdit: return ExperimentalFeature{ "Source Editing", "sourceEdit", "https://aka.ms/winget-settings", Feature::SourceEdit }; - + default: THROW_HR(E_UNEXPECTED); }