From 97420bf5fd9f1d085b54df09a20f4a4b2de36eb5 Mon Sep 17 00:00:00 2001 From: BDisp Date: Thu, 28 Jul 2022 00:17:51 +0100 Subject: [PATCH 1/3] Fixes #1816. MessageBox: Hides underlying dialog when visible (#1907) --- Terminal.Gui/Core/Application.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Terminal.Gui/Core/Application.cs b/Terminal.Gui/Core/Application.cs index c7baaa480..052233bd3 100644 --- a/Terminal.Gui/Core/Application.cs +++ b/Terminal.Gui/Core/Application.cs @@ -1022,6 +1022,12 @@ namespace Terminal.Gui { if (state.Toplevel != Top && (!Top.NeedDisplay.IsEmpty || Top.ChildNeedsDisplay || Top.LayoutNeeded)) { Top.Redraw (Top.Bounds); + foreach (var top in toplevels.Reverse ()) { + if (top != Top && top != state.Toplevel) { + top.SetNeedsDisplay (); + top.Redraw (top.Bounds); + } + } state.Toplevel.SetNeedsDisplay (state.Toplevel.Bounds); } if (!state.Toplevel.NeedDisplay.IsEmpty || state.Toplevel.ChildNeedsDisplay || state.Toplevel.LayoutNeeded From be671e0ddc3fc83160b1973c7b01c7dc573344e8 Mon Sep 17 00:00:00 2001 From: Tig Kindel Date: Thu, 28 Jul 2022 00:39:20 -0400 Subject: [PATCH 2/3] Fixes# 1912. Wizard shouldn't use Colors.Toplevel for help (#1913) --- Terminal.Gui/Windows/Wizard.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Terminal.Gui/Windows/Wizard.cs b/Terminal.Gui/Windows/Wizard.cs index e19a14b27..aecfa4d79 100644 --- a/Terminal.Gui/Windows/Wizard.cs +++ b/Terminal.Gui/Windows/Wizard.cs @@ -203,7 +203,9 @@ namespace Terminal.Gui { base.Add (contentView); - helpTextView.ColorScheme = Colors.TopLevel; + helpTextView.ColorScheme = new ColorScheme () { + Normal = new Attribute(Color.Gray, Color.DarkGray) + }; helpTextView.ReadOnly = true; helpTextView.WordWrap = true; base.Add (helpTextView); From df8d2dae724b01af5242fac75ccfdf1d52429ed7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 27 Jul 2022 21:41:46 -0700 Subject: [PATCH 3/3] Bump ReactiveUI from 18.2.5 to 18.3.1 (#1909) Bumps [ReactiveUI](https://github.com/reactiveui/reactiveui) from 18.2.5 to 18.3.1. - [Release notes](https://github.com/reactiveui/reactiveui/releases) - [Commits](https://github.com/reactiveui/reactiveui/compare/18.2.5...18.3.1) --- updated-dependencies: - dependency-name: ReactiveUI dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tig Kindel --- ReactiveExample/ReactiveExample.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactiveExample/ReactiveExample.csproj b/ReactiveExample/ReactiveExample.csproj index 97a3aaacf..fc6aba4dd 100644 --- a/ReactiveExample/ReactiveExample.csproj +++ b/ReactiveExample/ReactiveExample.csproj @@ -12,7 +12,7 @@ - +