We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5afc9bc commit 7cdbb7cCopy full SHA for 7cdbb7c
src/cascadia/TerminalSettingsModel/GlobalAppSettings.cpp
@@ -94,7 +94,11 @@ winrt::com_ptr<GlobalAppSettings> GlobalAppSettings::Copy() const
94
}
95
if (_DisabledProfileSources)
96
{
97
- globals->_DisabledProfileSources = winrt::single_threaded_vector<hstring>(std::move(wil::to_vector(*globals->_DisabledProfileSources)));
+ globals->_DisabledProfileSources = winrt::single_threaded_vector<hstring>();
98
+ for (const auto& src : *_DisabledProfileSources)
99
+ {
100
+ globals->_DisabledProfileSources->Append(src);
101
+ }
102
103
104
for (const auto& parent : _parents)
0 commit comments