setup: allow tabbing through fields on Mac. Closes #209

This commit is contained in:
Hylke Bons 2011-10-06 12:59:10 +02:00
parent f08b47a53f
commit 5c3f23277c

View file

@ -129,6 +129,8 @@ namespace SparkleShare {
i++;
}
}
RecalculateKeyViewLoop ();
}
@ -145,5 +147,11 @@ namespace SparkleShare {
NSApplication.SharedApplication.RemoveWindowsItem (this);
return;
}
public override bool AcceptsFirstResponder ()
{
return true;
}
}
}