Browse Source

Merge pull request #93129 from passivestar/object-selector-label

Center the label in EditorObjectSelector
Rémi Verschelde 1 year ago
parent
commit
1567a498cb
1 changed files with 1 additions and 0 deletions
  1. 1 0
      editor/gui/editor_object_selector.cpp

+ 1 - 0
editor/gui/editor_object_selector.cpp

@@ -239,6 +239,7 @@ EditorObjectSelector::EditorObjectSelector(EditorSelectionHistory *p_history) {
 	current_object_label = memnew(Label);
 	current_object_label->set_text_overrun_behavior(TextServer::OVERRUN_TRIM_ELLIPSIS);
 	current_object_label->set_h_size_flags(SIZE_EXPAND_FILL);
+	current_object_label->set_vertical_alignment(VERTICAL_ALIGNMENT_CENTER);
 	current_object_label->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
 	main_hb->add_child(current_object_label);