skip demo download prompt if ssl is unavailable

This commit is contained in:
Emanuele Fornara 2018-03-04 11:40:40 +01:00
parent d345712547
commit 0071c04dcb
1 changed files with 1 additions and 1 deletions

View File

@ -689,7 +689,7 @@ void ProjectManager::_notification(int p_what) {
} break; } break;
case NOTIFICATION_READY: { 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(); open_templates->popup_centered_minsize();
} break; } break;
case NOTIFICATION_VISIBILITY_CHANGED: { case NOTIFICATION_VISIBILITY_CHANGED: {