From d780127628c81b019368db38a4971648d25d7590 Mon Sep 17 00:00:00 2001 From: Joonas Rikkonen Date: Tue, 23 Apr 2019 11:18:32 +0300 Subject: [PATCH] (711f22e5f) Close bug report message box when a link is clicked --- Barotrauma/BarotraumaClient/Source/GameMain.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Barotrauma/BarotraumaClient/Source/GameMain.cs b/Barotrauma/BarotraumaClient/Source/GameMain.cs index 7eba4b6d0..283593ae5 100644 --- a/Barotrauma/BarotraumaClient/Source/GameMain.cs +++ b/Barotrauma/BarotraumaClient/Source/GameMain.cs @@ -775,6 +775,7 @@ namespace Barotrauma OnClicked = (btn, userdata) => { Process.Start(userdata as string); + msgBox.Close(); return true; } };