Removed shutdown call for from 'Dialog' example

This commit is contained in:
Thomas Nind
2022-04-30 20:05:34 +01:00
parent 0fbb2bc81a
commit bf1fa42f8b

View File

@@ -346,7 +346,6 @@ var entry = new TextField () {
};
dialog.Add (entry);
Application.Run (dialog);
Application.Shutdown ();
if (okpressed)
Console.WriteLine ("The user entered: " + entry.Text);
```