Accepted->Accepting

This commit is contained in:
Tig
2024-10-07 08:58:17 -04:00
parent 97684e4d64
commit 78d0a8fc3b
100 changed files with 308 additions and 308 deletions

View File

@@ -37,7 +37,7 @@ public class MessageBoxTests
Button btn = Application.Navigation!.GetFocused () as Button;
btn.Accepted += (sender, e) => { btnAcceptCount++; };
btn.Accepting += (sender, e) => { btnAcceptCount++; };
// Click
Application.OnKeyDown (Key.Enter);
@@ -120,7 +120,7 @@ public class MessageBoxTests
Button btn = Application.Navigation!.GetFocused () as Button;
btn.Accepted += (sender, e) => { btnAcceptCount++; };
btn.Accepting += (sender, e) => { btnAcceptCount++; };
Application.OnKeyDown (Key.Space);