Skip to content

Commit

Permalink
Adjusted the way error messages are displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
yt3trees committed Nov 18, 2023
1 parent 13881b9 commit 9fc51dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msbuild-gui/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ private void ShowResult(string[,] list, string cmdErrorText)
resultErrorText.Close();
if (ShowLogCheck.IsChecked == true)
{
ShowResult(Properties.Resources.ExecutionResult + " ※" + Properties.Resources.Error, TargetList.Items.Count, list, cmdErrorText + errTxt);
ShowResult(Properties.Resources.ExecutionResult + " ※" + Properties.Resources.Error, TargetList.Items.Count, list, cmdErrorText + errTxt.Replace("\n", "\n\n"));
}
else
{
Expand Down

0 comments on commit 9fc51dc

Please sign in to comment.