diff --git a/OpenRA.Editor/Form1.cs b/OpenRA.Editor/Form1.cs index 9df5ccff0c..907805d301 100644 --- a/OpenRA.Editor/Form1.cs +++ b/OpenRA.Editor/Form1.cs @@ -376,7 +376,7 @@ namespace OpenRA.Editor { if (!dirty) return; - switch (MessageBox.Show("The map has been modified since it was last saved. Save changes now?", + switch (MessageBox.Show("The map has been modified since it was last saved. " + "\r\n" + "Save changes now?", "Unsaved Changes", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation)) { case DialogResult.Yes: SaveClicked(null, EventArgs.Empty); break;