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

Unify window title format

This commit is contained in:
kobewi
2023-06-23 12:21:56 +02:00
parent fd31dc7f32
commit 44bec97d5e
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);