Skip to content

Commit

Permalink
skip demo download prompt if ssl is unavailable
Browse files Browse the repository at this point in the history
  • Loading branch information
efornara committed Mar 4, 2018
1 parent dad7b14 commit 7f90cd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/project_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down

0 comments on commit 7f90cd9

Please sign in to comment.