From 8f6431f65783283f220ef331162db97e0e67153a Mon Sep 17 00:00:00 2001 From: Sean Kaim Date: Thu, 16 Jun 2016 16:26:12 -0400 Subject: [PATCH] fix display issues on about screen --- mRemoteV1/UI/Window/AboutWindow.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mRemoteV1/UI/Window/AboutWindow.cs b/mRemoteV1/UI/Window/AboutWindow.cs index 2e42926a8..22d5b9f31 100644 --- a/mRemoteV1/UI/Window/AboutWindow.cs +++ b/mRemoteV1/UI/Window/AboutWindow.cs @@ -2,6 +2,7 @@ using System; using System.Windows.Forms; using WeifenLuo.WinFormsUI.Docking; using System.IO; +using System.Text; using mRemoteNG.App; using mRemoteNG.App.Info; @@ -299,7 +300,7 @@ namespace mRemoteNG.UI.Window if (File.Exists(GeneralAppInfo.HomePath + "\\CREDITS.TXT")) { - StreamReader sR = new StreamReader(GeneralAppInfo.HomePath + "\\CREDITS.TXT"); + StreamReader sR = new StreamReader(GeneralAppInfo.HomePath + "\\CREDITS.TXT", Encoding.Default, true); txtCredits.Text = sR.ReadToEnd(); sR.Close(); }