summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2019-08-31 20:39:13 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2019-08-31 20:39:52 +0200
commite19f7b3c38b2fd92f3160fa3a95662e4b81cb8df (patch)
tree40c71a4fcfe06229e668a29543879ea86c8d1a0f
parentb17b51d9701459d43da7c6766642762649802ff0 (diff)
Increase the minimum width of the editor sectioned inspector
This makes sure section names such as "Window Placement" or "Vram Compression" aren't being cut off due to the panel width being too low.
-rw-r--r--editor/editor_sectioned_inspector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_sectioned_inspector.cpp b/editor/editor_sectioned_inspector.cpp
index ad6b280b6d..abff8190af 100644
--- a/editor/editor_sectioned_inspector.cpp
+++ b/editor/editor_sectioned_inspector.cpp
@@ -316,7 +316,7 @@ SectionedInspector::SectionedInspector() :
add_constant_override("autohide", 1); // Fixes the dragger always showing up
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);
sections->set_v_size_flags(SIZE_EXPAND_FILL);