Merge pull request #21767 from volzhs/expand-collapse-all

Make expand/collapse all properties menu working
This commit is contained in:
Rémi Verschelde 2018-09-05 18:04:44 +02:00 committed by GitHub
commit 2f4912ec69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,6 +36,12 @@
void InspectorDock::_menu_option(int p_option) {
switch (p_option) {
case EXPAND_ALL: {
_menu_expandall();
} break;
case COLLAPSE_ALL: {
_menu_collapseall();
} break;
case RESOURCE_MAKE_BUILT_IN: {
_unref_resource();
} break;