1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Merge pull request #78609 from KoBeWi/—GodotEngine

Unify window title format
This commit is contained in:
Rémi Verschelde
2023-06-23 12:36:44 +02:00
2 changed files with 2 additions and 2 deletions

View File

@@ -559,7 +559,7 @@ void ShaderEditorPlugin::_notification(int p_what) {
ShaderEditorPlugin::ShaderEditorPlugin() {
window_wrapper = memnew(WindowWrapper);
window_wrapper->set_window_title(TTR("Shader Editor - Godot Engine"));
window_wrapper->set_window_title(vformat(TTR("%s - Godot Engine"), TTR("Shader Editor")));
window_wrapper->set_margins_enabled(true);
main_split = memnew(HSplitContainer);