Browse Source

Merge pull request #31835 from Calinou/increase-editor-sectioned-inspector-min-width

Increase the minimum width of the editor sectioned inspector
Rémi Verschelde 6 years ago
parent
commit
815055a29b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      editor/editor_sectioned_inspector.cpp

+ 1 - 1
editor/editor_sectioned_inspector.cpp

@@ -316,7 +316,7 @@ SectionedInspector::SectionedInspector() :
 	add_constant_override("autohide", 1); // Fixes the dragger always showing up
 	add_constant_override("autohide", 1); // Fixes the dragger always showing up
 
 
 	VBoxContainer *left_vb = memnew(VBoxContainer);
 	VBoxContainer *left_vb = memnew(VBoxContainer);
-	left_vb->set_custom_minimum_size(Size2(170, 0) * EDSCALE);
+	left_vb->set_custom_minimum_size(Size2(190, 0) * EDSCALE);
 	add_child(left_vb);
 	add_child(left_vb);
 
 
 	sections->set_v_size_flags(SIZE_EXPAND_FILL);
 	sections->set_v_size_flags(SIZE_EXPAND_FILL);