Browse Source

Center the label in overview of script editor

passivestar 1 year ago
parent
commit
1a1d8a58ca
1 changed files with 1 additions and 0 deletions
  1. 1 0
      editor/plugins/script_editor_plugin.cpp

+ 1 - 0
editor/plugins/script_editor_plugin.cpp

@@ -4049,6 +4049,7 @@ ScriptEditor::ScriptEditor(WindowWrapper *p_wrapper) {
 	filename = memnew(Label);
 	filename->set_clip_text(true);
 	filename->set_h_size_flags(SIZE_EXPAND_FILL);
+	filename->set_vertical_alignment(VERTICAL_ALIGNMENT_CENTER);
 	filename->add_theme_style_override(CoreStringName(normal), EditorNode::get_singleton()->get_editor_theme()->get_stylebox(CoreStringName(normal), SNAME("LineEdit")));
 	buttons_hbox->add_child(filename);