From af69bbe0de2876c029c8905040c8b7da3d02a494 Mon Sep 17 00:00:00 2001 From: Aptivi CEO Date: Mon, 1 Jul 2024 23:54:09 +0300 Subject: [PATCH] imp - Prevent infobox from exiting when mouse move... ...s --- We need to prevent the modal infoboxes from closing themselves when we move the mouse. --- Type: imp Breaking: False Doc Required: False Backport Required: False Part: 1/1 --- Terminaux/Inputs/Styles/Infobox/InfoBoxColor.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Terminaux/Inputs/Styles/Infobox/InfoBoxColor.cs b/Terminaux/Inputs/Styles/Infobox/InfoBoxColor.cs index 2df83a68..c5a15a40 100644 --- a/Terminaux/Inputs/Styles/Infobox/InfoBoxColor.cs +++ b/Terminaux/Inputs/Styles/Infobox/InfoBoxColor.cs @@ -498,6 +498,10 @@ void DoActionBasedOnButtonPress(PointerEventContext mouse) delay = false; exiting = false; break; + default: + delay = false; + exiting = false; + break; } } else if (ConsoleWrapper.KeyAvailable && !PointerListener.PointerActive)