diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-01-02 12:52:51 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-01-02 12:52:51 -0300 |
commit | 0378e1109b8ff96a3583d7da02966ef3344ee35a (patch) | |
tree | 63554eefbc2102de57c8bc49fc65d92fa6c2ba09 /tools/editor/plugins | |
parent | 530d717a67cc3acab10270dca700db328aa12891 (diff) |
-fixed NODE_OUT error in animtreeplayer #1078
-fixed randon button when editing menubutton #1079
Diffstat (limited to 'tools/editor/plugins')
-rw-r--r-- | tools/editor/plugins/item_list_editor_plugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/editor/plugins/item_list_editor_plugin.cpp b/tools/editor/plugins/item_list_editor_plugin.cpp index eb7ab69987..a8b34ef503 100644 --- a/tools/editor/plugins/item_list_editor_plugin.cpp +++ b/tools/editor/plugins/item_list_editor_plugin.cpp @@ -210,6 +210,7 @@ void ItemListEditor::_bind_methods() { } bool ItemListEditor::handles(Object *p_object) const { + return false; for(int i=0;i<item_plugins.size();i++) { if (item_plugins[i]->handles(p_object)) { return true; |