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.
This commit is contained in:
AyOhEe 2024-04-01 23:01:40 +01:00 committed by GitHub
parent 29b3d9e9e5
commit e18fb27d70
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -167,8 +167,8 @@ namespace GodotTools
public void ShowConfirmCreateSlnDialog()
{
_confirmCreateSlnDialog.Title = "C# solution already exists. This will override the existing C# project file, any manual changes will be lost.".TTR();
_confirmCreateSlnDialog.DialogText = "Create C# solution".TTR();
_confirmCreateSlnDialog.Title = "Create C# solution".TTR();
_confirmCreateSlnDialog.DialogText = "C# solution already exists. This will override the existing C# project file, any manual changes will be lost.".TTR();
EditorInterface.Singleton.PopupDialogCentered(_confirmCreateSlnDialog);
}