1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

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

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