mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 00:46:39 +01:00
* initial * basically working * removed test settings * removed extra usings * Improved API docs * Renamed glyphs to be consistent and use unicode names; use char literals * Refactored Glyphs class & Json format to not be static (startup perf) * Refactored Glyphs class & Json format to not be static (startup perf) * Fixed a bunch of API doc errors * Switched checked/selected to glyhps from box drawing range * Switched button glyphs to nicer looking ones that seem to work on standard fonts * Upgraded LineDrawing scenario * CrossHair->Cross * Fixed unit tests * Fixed unit tests; moved Glyphs from Application to ConfigurationManager; added CM global using alias * Found and replaced all other special glyphs; fixed more unit tests
This commit is contained in:
@@ -251,7 +251,7 @@ namespace Terminal.Gui.DriverTests {
|
||||
System.Threading.Tasks.Task.Delay (500).Wait ();
|
||||
Application.MainLoop.Invoke (() => {
|
||||
var lbl = new Label ("Hello World") { X = Pos.Center () };
|
||||
var dlg = new Dialog (new Button ("Ok"));
|
||||
var dlg = new Dialog ();
|
||||
dlg.Add (lbl);
|
||||
Application.Begin (dlg);
|
||||
|
||||
@@ -261,7 +261,7 @@ namespace Terminal.Gui.DriverTests {
|
||||
││ Hello World │ │
|
||||
││ │ │
|
||||
││ │ │
|
||||
││ [ Ok ] │ │
|
||||
││ │ │
|
||||
│└───────────────┘ │
|
||||
└──────────────────┘
|
||||
";
|
||||
@@ -278,7 +278,7 @@ namespace Terminal.Gui.DriverTests {
|
||||
││ Hello World │ │
|
||||
││ │ │
|
||||
││ │ │
|
||||
││ [ Ok ] │ │
|
||||
││ │ │
|
||||
│└───────────────┘ │
|
||||
└──────────────────┘
|
||||
";
|
||||
|
||||
Reference in New Issue
Block a user