summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorveryprofessionaldodo <pedroreis.ad@protonmail.com>2020-01-07 21:46:20 +0000
committerveryprofessionaldodo <pedroreis.ad@protonmail.com>2020-01-08 14:23:36 +0000
commitd88f620c521491d39d8994be9687e3f82457a511 (patch)
tree9151d9cfee1a6e80eb124b023a945051cbf26e50 /editor
parent8287349bd3c647fe3a504b89dd02308279d71074 (diff)
Recent Nodes now respect Editor Profiles
Diffstat (limited to 'editor')
-rw-r--r--editor/create_dialog.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/create_dialog.cpp b/editor/create_dialog.cpp
index 7788d6349a..df423bfa0e 100644
--- a/editor/create_dialog.cpp
+++ b/editor/create_dialog.cpp
@@ -59,7 +59,8 @@ void CreateDialog::popup_create(bool p_dont_clear, bool p_replace_mode, const St
String l = f->get_line().strip_edges();
String name = l.split(" ")[0];
- if (ClassDB::class_exists(name) || ScriptServer::is_global_class(name)) {
+ if ((ClassDB::class_exists(name) || ScriptServer::is_global_class(name)) && !_is_class_disabled_by_feature_profile(name)) {
+
TreeItem *ti = recent->create_item(root);
ti->set_text(0, l);
ti->set_icon(0, EditorNode::get_singleton()->get_class_icon(l, base_type));