Skip to content

Commit f2cc814

Browse files
committed
Merge pull request godotengine#90118 from AyOhEe/sln-title-fix
Fix "Create C# solution" dialog
2 parents 4396fb4 + e18fb27 commit f2cc814

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/mono/editor/GodotTools/GodotTools/GodotSharpEditor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ public void ShowErrorDialog(string message, string title = "Error")
167167

168168
public void ShowConfirmCreateSlnDialog()
169169
{
170-
_confirmCreateSlnDialog.Title = "C# solution already exists. This will override the existing C# project file, any manual changes will be lost.".TTR();
171-
_confirmCreateSlnDialog.DialogText = "Create C# solution".TTR();
170+
_confirmCreateSlnDialog.Title = "Create C# solution".TTR();
171+
_confirmCreateSlnDialog.DialogText = "C# solution already exists. This will override the existing C# project file, any manual changes will be lost.".TTR();
172172
EditorInterface.Singleton.PopupDialogCentered(_confirmCreateSlnDialog);
173173
}
174174

0 commit comments

Comments
 (0)