You've already forked godot
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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user