diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-01-05 09:38:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-05 09:38:25 +0100 |
commit | 30cd6643bea5c38128a0dc285c6aeaf0185d2e7b (patch) | |
tree | 98109edaa54c89e76836f821e4d2a6a243e6f425 | |
parent | 5322ed05c722d64f4f9c610328eea2117c111879 (diff) | |
parent | 0ae4ca706663242cab5aaa3854bcd52f94db9d1d (diff) |
Merge pull request #15356 from damarindra/tileset-properties
prevent autotile properties out of bounds
-rw-r--r-- | editor/plugins/tile_set_editor_plugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/tile_set_editor_plugin.cpp b/editor/plugins/tile_set_editor_plugin.cpp index f1870807c2..b5ff94a056 100644 --- a/editor/plugins/tile_set_editor_plugin.cpp +++ b/editor/plugins/tile_set_editor_plugin.cpp @@ -340,6 +340,7 @@ AutotileEditor::AutotileEditor(EditorNode *p_editor) { property_editor = memnew(PropertyEditor); property_editor->set_v_size_flags(SIZE_EXPAND_FILL); property_editor->set_h_size_flags(SIZE_EXPAND_FILL); + property_editor->set_custom_minimum_size(Size2(10, 70)); split->add_child(property_editor); helper = memnew(AutotileEditorHelper(this)); |