Rename Command.Select to Command.Activate and Selecting to Activating

Co-authored-by: tig <585482+tig@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-08 23:17:06 +00:00
parent b905431029
commit e3a4331056
49 changed files with 164 additions and 163 deletions

View File

@@ -49,7 +49,7 @@ public class TextFieldTests (ITestOutputHelper output) : FakeDriverBase
{
TextField tf = new ();
tf.Selecting += (sender, args) => Assert.Fail ("Selected should not be raied.");
tf.Activating += (sender, args) => Assert.Fail ("Selected should not be raied.");
Runnable top = new ();
top.Add (tf);
@@ -65,7 +65,7 @@ public class TextFieldTests (ITestOutputHelper output) : FakeDriverBase
TextField tf = new ();
var selectingCount = 0;
tf.Selecting += (sender, args) => selectingCount++;
tf.Activating += (sender, args) => selectingCount++;
Runnable top = new ();
top.Add (tf);