Skip to content

Commit

Permalink
Merge pull request #59572 from timothyqiu/ssl-restart-3.x
Browse files Browse the repository at this point in the history
[3.x] Mark Editor SSL Certificates setting as require restart
  • Loading branch information
akien-mga authored Mar 27, 2022
2 parents c18df50 + 7b7ef59 commit d8e460c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/editor_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) {

// SSL
_initial_set("network/ssl/editor_ssl_certificates", _SYSTEM_CERTS_PATH);
hints["network/ssl/editor_ssl_certificates"] = PropertyInfo(Variant::STRING, "network/ssl/editor_ssl_certificates", PROPERTY_HINT_GLOBAL_FILE, "*.crt,*.pem");
hints["network/ssl/editor_ssl_certificates"] = PropertyInfo(Variant::STRING, "network/ssl/editor_ssl_certificates", PROPERTY_HINT_GLOBAL_FILE, "*.crt,*.pem", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_RESTART_IF_CHANGED);

// HTTP Proxy
_initial_set("network/http_proxy/host", "");
Expand Down

0 comments on commit d8e460c

Please sign in to comment.