From 76b3529afe0f17ada2fbdbd62dad39d9947d4bf0 Mon Sep 17 00:00:00 2001 From: BDisp Date: Sat, 27 May 2023 23:25:06 +0100 Subject: [PATCH] Fixes #2678. TextView stops being responsive after application is sent to the background --- Terminal.Gui/ConsoleDrivers/WindowsDriver.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs b/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs index 52139db8c..76a69bdb4 100644 --- a/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs +++ b/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs @@ -902,6 +902,7 @@ namespace Terminal.Gui { break; case WindowsConsole.EventType.Focus: + keyModifiers = null; break; } }