spellcheck

This commit is contained in:
Carlos Zamora
2026-07-30 13:58:23 -07:00
parent eeeb1c773f
commit f69e009bc3
2 changed files with 4 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
aci
addref
allcolors
Affordance
breadcrumb
breadcrumbs
ccmp

View File

@@ -88,10 +88,10 @@ namespace winrt::Microsoft::Terminal::Settings::Editor::implementation
if (const auto target{ Target() })
{
if (const auto inpc{ target.try_as<INotifyPropertyChanged>() })
if (const auto observable{ target.try_as<INotifyPropertyChanged>() })
{
_subscribedTarget = inpc;
_targetPropertyChangedToken = inpc.PropertyChanged({ get_weak(), &SettingResetButton::_OnTargetPropertyChanged });
_subscribedTarget = observable;
_targetPropertyChangedToken = observable.PropertyChanged({ get_weak(), &SettingResetButton::_OnTargetPropertyChanged });
}
}
}