mirror of
https://github.com/godotengine/godot.git
synced 2025-10-28 12:14:44 +00:00
-Completely removed EmptyControl (but added fallback), closes #1017
This commit is contained in:
parent
0e1d70f637
commit
dc7ac86b79
13 changed files with 35 additions and 35 deletions
|
|
@ -718,8 +718,8 @@ TileMapEditor::TileMapEditor(EditorNode *p_editor) {
|
|||
undo_redo = editor->get_undo_redo();
|
||||
|
||||
int mw = EDITOR_DEF("tile_map/palette_min_width",80);
|
||||
EmptyControl *ec = memnew( EmptyControl);
|
||||
ec->set_minsize(Size2(mw,0));
|
||||
Control *ec = memnew( Control);
|
||||
ec->set_custom_minimum_size(Size2(mw,0));
|
||||
add_child(ec);
|
||||
|
||||
// Add tile palette
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue