summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-07-13 18:02:47 +0200
committerGitHub <noreply@github.com>2020-07-13 18:02:47 +0200
commit817062f8ecc82a34ad980f0081e8592291e2ff55 (patch)
treedb79da34629aa405f4f0f2e994ef5b159fffaaa0
parent6f0edf5bc9d9608f0d0017495a1dc880f401b629 (diff)
parenta8905b2a4e8e1364521948c2d3aa734ead5f715d (diff)
Merge pull request #40297 from jiteshvm/texture-dialog-size
change minimum horizontal size from 200 to 240
-rw-r--r--editor/plugins/canvas_item_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/canvas_item_editor_plugin.cpp b/editor/plugins/canvas_item_editor_plugin.cpp
index 9392734ea3..44913abe8b 100644
--- a/editor/plugins/canvas_item_editor_plugin.cpp
+++ b/editor/plugins/canvas_item_editor_plugin.cpp
@@ -6396,7 +6396,7 @@ CanvasItemEditorViewport::CanvasItemEditorViewport(EditorNode *p_node, CanvasIte
selector->add_child(vbc);
vbc->set_h_size_flags(Control::SIZE_EXPAND_FILL);
vbc->set_v_size_flags(Control::SIZE_EXPAND_FILL);
- vbc->set_custom_minimum_size(Size2(200, 260) * EDSCALE);
+ vbc->set_custom_minimum_size(Size2(240, 260) * EDSCALE);
btn_group = memnew(VBoxContainer);
vbc->add_child(btn_group);