From 3318a6accc002839fcf2139d41574e83909b49f9 Mon Sep 17 00:00:00 2001 From: JappaWakka Date: Mon, 22 Apr 2024 13:47:33 +0200 Subject: [PATCH] Reduce wait time before clickable MainMenu msgbox --- P3D/Input/UI/MessageBox.vb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/P3D/Input/UI/MessageBox.vb b/P3D/Input/UI/MessageBox.vb index 869419c1e..7c1c0dc2c 100644 --- a/P3D/Input/UI/MessageBox.vb +++ b/P3D/Input/UI/MessageBox.vb @@ -93,7 +93,8 @@ If _fadeIn + 0.01F >= 1.0F Then _fadeIn = 1.0F End If - Else + End If + If _fadeIn > 0.75F Then If Controls.Dismiss(True, True, True) Or Controls.Accept(True, True, True) Then _closing = True End If