mirror of
https://github.com/microsoft/terminal.git
synced 2026-09-24 16:05:21 +00:00
spellcheck
This commit is contained in:
1
.github/actions/spelling/allow/allow.txt
vendored
1
.github/actions/spelling/allow/allow.txt
vendored
@@ -1,6 +1,7 @@
|
||||
aci
|
||||
addref
|
||||
allcolors
|
||||
Affordance
|
||||
breadcrumb
|
||||
breadcrumbs
|
||||
ccmp
|
||||
|
||||
@@ -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 });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user