mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-30 09:47:58 +01:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user