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/FocusableBooleanButton.cs')
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/Custom/FocusableBooleanButton.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/Custom/FocusableBooleanButton.cs b/Xamarin.PropertyEditing.Mac/Controls/Custom/FocusableBooleanButton.cs
index 01ad5e0..0f30939 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/Custom/FocusableBooleanButton.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/Custom/FocusableBooleanButton.cs
@@ -5,17 +5,17 @@ namespace Xamarin.PropertyEditing.Mac
{
internal class ProxyResponderButton : NSButton
{
- public ProxyRowResponder ResponderProxy { get; set; }
+ public RowProxyResponder ProxyResponder { get; set; }
public override void KeyDown (NSEvent theEvent)
{
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;