Skip to content

Commit e18fb27

Browse files
authored
Fixed "Create C# solution" dialog
Flipped the title and dialog text to how they should be. It seemed that the title was being put in the dialog text, and vice versa.
1 parent 29b3d9e commit e18fb27

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)