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/CombinablePropertyEditor.cs')
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/CombinablePropertyEditor.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/CombinablePropertyEditor.cs b/Xamarin.PropertyEditing.Mac/Controls/CombinablePropertyEditor.cs
index 7aeaaf3..c2ce8a5 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/CombinablePropertyEditor.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/CombinablePropertyEditor.cs
@@ -92,10 +92,10 @@ namespace Xamarin.PropertyEditing.Mac
if (combinableList.Count > 0)
{
if (firstButton == lastButton) {
- firstButton.ProxyResponder = new RowProxyResponder (this, ProxyRowType.SingleView);
+ firstButton.ProxyResponder = new ProxyResponder (this, ProxyRowType.SingleView);
} else {
- firstButton.ProxyResponder = new RowProxyResponder (this, ProxyRowType.FirstView);
- lastButton.ProxyResponder = new RowProxyResponder (this, ProxyRowType.LastView);
+ firstButton.ProxyResponder = new ProxyResponder (this, ProxyRowType.FirstView);
+ lastButton.ProxyResponder = new ProxyResponder (this, ProxyRowType.LastView);
}
}