From e10094bf8f017cb6ee3cc831be1963c5a29bae2a Mon Sep 17 00:00:00 2001 From: morkt Date: Mon, 10 Apr 2017 14:33:16 +0400 Subject: [PATCH] removed colon from error message. --- GUI/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUI/MainWindow.xaml.cs b/GUI/MainWindow.xaml.cs index 4bca3861..be9fb81e 100644 --- a/GUI/MainWindow.xaml.cs +++ b/GUI/MainWindow.xaml.cs @@ -851,7 +851,7 @@ namespace GARbro.GUI } catch (Exception X) { - PopupError (string.Format("{0}:\n{1}", filename, X.Message), guiStrings.MsgErrorOpening); + PopupError (string.Format("{0}\n{1}", filename, X.Message), guiStrings.MsgErrorOpening); } }