Merge pull request #90118 from AyOhEe/sln-title-fix

Fix "Create C# solution" dialog
This commit is contained in:
Rémi Verschelde 2024-04-05 12:16:10 +02:00
commit f2cc814f35
No known key found for this signature in database
GPG Key ID: C3336907360768E1

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);
}