Skip to content

Commit 7cdbb7c

Browse files
committed
address feedback
1 parent 5afc9bc commit 7cdbb7c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/cascadia/TerminalSettingsModel/GlobalAppSettings.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,11 @@ winrt::com_ptr<GlobalAppSettings> GlobalAppSettings::Copy() const
9494
}
9595
if (_DisabledProfileSources)
9696
{
97-
globals->_DisabledProfileSources = winrt::single_threaded_vector<hstring>(std::move(wil::to_vector(*globals->_DisabledProfileSources)));
97+
globals->_DisabledProfileSources = winrt::single_threaded_vector<hstring>();
98+
for (const auto& src : *_DisabledProfileSources)
99+
{
100+
globals->_DisabledProfileSources->Append(src);
101+
}
98102
}
99103

100104
for (const auto& parent : _parents)

0 commit comments

Comments
 (0)