diff --git a/YAMDCC.GUI/Dialogs/CrashDialog.cs b/YAMDCC.GUI/Dialogs/CrashDialog.cs index 5f68c8c..9ed8488 100644 --- a/YAMDCC.GUI/Dialogs/CrashDialog.cs +++ b/YAMDCC.GUI/Dialogs/CrashDialog.cs @@ -11,10 +11,10 @@ public CrashDialog(Exception ex, bool threadException) { InitializeComponent(); txtStackTrace.Text = threadException - ? "Called from Application.ThreadException\n" - : "Called from AppDomain.CurrentDomain.UnhandledException\n"; + ? "Called from Application.ThreadException\r\n" + : "Called from AppDomain.CurrentDomain.UnhandledException\r\n"; - txtStackTrace.Text += $"{ex.Message}\n{ex.StackTrace}"; + txtStackTrace.Text += $"{ex.Message}\r\n{ex.StackTrace}"; } private void btnReportIssue_Click(object sender, EventArgs e) diff --git a/YAMDCC.GUI/MainWindow.Designer.cs b/YAMDCC.GUI/MainWindow.Designer.cs index eaee988..37c043d 100644 --- a/YAMDCC.GUI/MainWindow.Designer.cs +++ b/YAMDCC.GUI/MainWindow.Designer.cs @@ -307,14 +307,14 @@ private void InitializeComponent() // tsiAbout // this.tsiAbout.Name = "tsiAbout"; - this.tsiAbout.Size = new System.Drawing.Size(141, 22); + this.tsiAbout.Size = new System.Drawing.Size(180, 22); this.tsiAbout.Text = "About"; this.tsiAbout.Click += new System.EventHandler(this.tsiAbout_Click); // // tsiSource // this.tsiSource.Name = "tsiSource"; - this.tsiSource.Size = new System.Drawing.Size(141, 22); + this.tsiSource.Size = new System.Drawing.Size(180, 22); this.tsiSource.Text = "Source Code"; this.tsiSource.Click += new System.EventHandler(this.tsiSrc_Click); //