Merge branch 'v2_develop' into v2_single-smaller-top-fix_2416

This commit is contained in:
Tig
2023-03-16 07:50:47 -06:00
committed by GitHub
52 changed files with 305 additions and 160 deletions

View File

@@ -106,7 +106,7 @@ namespace Terminal.Gui.TopLevelTests {
var statusBar = new StatusBar (new [] {
new StatusItem(Key.CtrlMask | Key.R, "~^R~ Run Top2", () => Application.Run (Top2 ())),
new StatusItem(Key.CtrlMask | Key.Q, "~^Q~ Quit", () => Application.RequestStop())
new StatusItem(Application.QuitKey, $"{Application.QuitKey} to Quit", () => Application.RequestStop())
});
top.Add (statusBar);