Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.PropertyEditing.Mac/Controls/Custom/NumericTextField.cs')
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/Custom/NumericTextField.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/Custom/NumericTextField.cs b/Xamarin.PropertyEditing.Mac/Controls/Custom/NumericTextField.cs
index 7f324cf..e5293d7 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/Custom/NumericTextField.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/Custom/NumericTextField.cs
@@ -51,18 +51,18 @@ namespace Xamarin.PropertyEditing.Mac
Delegate = keyUpDownDelegate;
}
- public ProxyRowResponder ResponderProxy
+ public RowProxyResponder ProxyResponder
{
get {
if (Delegate is KeyUpDownDelegate keydown) {
- return keydown.ResponderProxy;
+ return keydown.ProxyResponder;
}
return null;
}
set
{
if (Delegate is KeyUpDownDelegate keydown) {
- keydown.ResponderProxy = value;
+ keydown.ProxyResponder = value;
}
}
}