Merge pull request #17249 from efornara/skip_demo_prompt_nossl

skip demo download prompt if ssl is unavailable
This commit is contained in:
Rémi Verschelde 2018-03-05 19:40:40 +01:00 committed by GitHub
commit cd1d1f5545
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -689,7 +689,7 @@ void ProjectManager::_notification(int p_what) {
} break;
case NOTIFICATION_READY: {
if (scroll_children->get_child_count() == 0)
if (scroll_children->get_child_count() == 0 && StreamPeerSSL::is_available())
open_templates->popup_centered_minsize();
} break;
case NOTIFICATION_VISIBILITY_CHANGED: {