You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
-Completely removed EmptyControl (but added fallback), closes #1017
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user