diff --git a/src/Views/CommitMessageTextBox.axaml.cs b/src/Views/CommitMessageTextBox.axaml.cs index 0c6cc45c..6eec0379 100644 --- a/src/Views/CommitMessageTextBox.axaml.cs +++ b/src/Views/CommitMessageTextBox.axaml.cs @@ -146,7 +146,7 @@ namespace SourceGit.Views SubjectEditor.Paste(text.Substring(0, idx)); DescriptionEditor.Focus(); DescriptionEditor.CaretIndex = 0; - DescriptionEditor.Paste(text.Substring(idx + 1) + "\n"); + DescriptionEditor.Paste(text.Substring(idx + 1).Trim()); } } else