Bugfix: auto-generate name for settings ui action

This commit is contained in:
Carlos Zamora 2020-12-26 17:18:25 -06:00
parent b5370a1da1
commit 91eb49e20a
2 changed files with 6 additions and 1 deletions

View file

@ -292,6 +292,8 @@ namespace winrt::Microsoft::Terminal::Settings::Model::implementation
return RS_(L"OpenDefaultSettingsCommandKey");
case SettingsTarget::AllFiles:
return RS_(L"OpenBothSettingsFilesCommandKey");
case SettingsTarget::SettingsUI:
return RS_(L"OpenSettingsUICommandKey");
default:
return RS_(L"OpenSettingsCommandKey");
}

View file

@ -363,4 +363,7 @@
<data name="BreakIntoDebuggerCommandKey" xml:space="preserve">
<value>Break into the debugger</value>
</data>
</root>
<data name="OpenSettingsUICommandKey" xml:space="preserve">
<value>Open Settings UI</value>
</data>
</root>