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/FocusablePopupButton.cs')
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/Custom/FocusablePopupButton.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/Custom/FocusablePopupButton.cs b/Xamarin.PropertyEditing.Mac/Controls/Custom/FocusablePopupButton.cs
index 7cdfcfc..fa00bcf 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/Custom/FocusablePopupButton.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/Custom/FocusablePopupButton.cs
@@ -8,7 +8,7 @@ namespace Xamarin.PropertyEditing.Mac
{
public override bool CanBecomeKeyView { get { return Enabled; } }
- public ProxyRowResponder ResponderProxy { get; set; }
+ public RowProxyResponder ProxyResponder { get; set; }
public FocusablePopUpButton ()
{
@@ -19,11 +19,11 @@ namespace Xamarin.PropertyEditing.Mac
{
switch (theEvent.KeyCode) {
case (int)NSKey.Tab:
- if (ResponderProxy != null) {
+ if (ProxyResponder != null) {
if (theEvent.ModifierFlags.HasFlag(NSEventModifierMask.ShiftKeyMask)) {
- ResponderProxy.PreviousResponder ();
+ ProxyResponder.PreviousResponder ();
} else {
- ResponderProxy.NextResponder ();
+ ProxyResponder.NextResponder ();
}
}
return;