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/FocusableComboBox.cs')
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/Custom/FocusableComboBox.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/Custom/FocusableComboBox.cs b/Xamarin.PropertyEditing.Mac/Controls/Custom/FocusableComboBox.cs
index d75dde2..a9994c7 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/Custom/FocusableComboBox.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/Custom/FocusableComboBox.cs
@@ -5,17 +5,17 @@ namespace Xamarin.PropertyEditing.Mac
{
internal class FocusableComboBox : NSComboBox
{
- 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;