diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-09-12 11:41:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-12 11:41:44 +0200 |
commit | 84ccda4e1d6f9a63b689167887f7d329cdc5dffa (patch) | |
tree | 3ad0bb35649872beec425df1b7afca14e92a19ee | |
parent | 2b50dc5d4f0b9d0c6fd5463b5d89d17578b388ab (diff) | |
parent | 390a2025fedd431acb98db9e46faa7bbb3ef93ae (diff) |
Merge pull request #11058 from hpvb/fix-11043
Don't set editor_hint true for project manager
-rw-r--r-- | editor/project_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/project_manager.cpp b/editor/project_manager.cpp index da53b06516..b36d4715c4 100644 --- a/editor/project_manager.cpp +++ b/editor/project_manager.cpp @@ -467,7 +467,7 @@ void ProjectManager::_notification(int p_what) { if (p_what == NOTIFICATION_ENTER_TREE) { - Engine::get_singleton()->set_editor_hint(true); + Engine::get_singleton()->set_editor_hint(false); } else if (p_what == NOTIFICATION_VISIBILITY_CHANGED) { |