From 5e4c4165c9ebe4e18fb6aef306af4dde44077d75 Mon Sep 17 00:00:00 2001 From: Charlie Kindel Date: Sat, 5 Nov 2022 19:10:32 -0600 Subject: [PATCH] Changed Top's colorscheme to base --- UICatalog/Scenarios/WindowsAndFrameViews.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/UICatalog/Scenarios/WindowsAndFrameViews.cs b/UICatalog/Scenarios/WindowsAndFrameViews.cs index 4c4c16b01..417dbe810 100644 --- a/UICatalog/Scenarios/WindowsAndFrameViews.cs +++ b/UICatalog/Scenarios/WindowsAndFrameViews.cs @@ -24,6 +24,7 @@ namespace UICatalog.Scenarios { //Ignore the Win that UI Catalog created and create a new one Application.Top.Remove (Win); Win?.Dispose (); + Win = new Window ($"{listWin.Count} - Scenario: {GetName ()}", padding) { X = Pos.Center (), Y = 1, @@ -175,6 +176,8 @@ namespace UICatalog.Scenarios { Application.Top.Add (frame); listWin.Add (frame); + + Application.Top.ColorScheme = Colors.Base; } } } \ No newline at end of file