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/NumericEditorControl.cs')
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/NumericEditorControl.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/NumericEditorControl.cs b/Xamarin.PropertyEditing.Mac/Controls/NumericEditorControl.cs
index 4687e0c..3a00b28 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/NumericEditorControl.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/NumericEditorControl.cs
@@ -18,7 +18,7 @@ namespace Xamarin.PropertyEditing.Mac
NumericEditor = new NumericSpinEditor<T> (hostResources)
{
- ProxyResponder = new RowProxyResponder (this, ProxyRowType.SingleView)
+ ProxyResponder = new ProxyResponder (this, ProxyRowType.SingleView)
};
NumericEditor.ValueChanged += OnValueChanged;
@@ -132,8 +132,8 @@ namespace Xamarin.PropertyEditing.Mac
TranslatesAutoresizingMaskIntoConstraints = false,
};
- this.NumericEditor.ProxyResponder = new RowProxyResponder (this, ProxyRowType.FirstView);
- this.inputModePopup.ProxyResponder = new RowProxyResponder (this, ProxyRowType.LastView);
+ this.NumericEditor.ProxyResponder = new ProxyResponder (this, ProxyRowType.FirstView);
+ this.inputModePopup.ProxyResponder = new ProxyResponder (this, ProxyRowType.LastView);
this.inputModePopup.Activated += (o, e) => {
var popupButton = o as NSPopUpButton;