mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-02 01:03:29 +01:00
better names and API docs
This commit is contained in:
@@ -840,7 +840,7 @@ public class ApplicationTests
|
||||
// Don't use Dialog here as it has more layout logic. Use Window instead.
|
||||
Dialog d = null;
|
||||
Toplevel top = new ();
|
||||
top.DrawContent += (s, a) => count++;
|
||||
top.DrawingContent += (s, a) => count++;
|
||||
int iteration = -1;
|
||||
|
||||
Application.Iteration += (s, a) =>
|
||||
@@ -851,7 +851,7 @@ public class ApplicationTests
|
||||
{
|
||||
// TODO: Don't use Dialog here as it has more layout logic. Use Window instead.
|
||||
d = new ();
|
||||
d.DrawContent += (s, a) => count++;
|
||||
d.DrawingContent += (s, a) => count++;
|
||||
Application.Run (d);
|
||||
}
|
||||
else if (iteration < 3)
|
||||
|
||||
Reference in New Issue
Block a user