Fix HTML5 quick preview URL

This commit is contained in:
bruvzg 2019-03-05 15:48:11 +02:00
parent 45e7306b5a
commit 75d75c68c4
No known key found for this signature in database
GPG key ID: 89DD917D9CE4218D

View file

@ -360,7 +360,7 @@ Error EditorExportPlatformJavaScript::run(const Ref<EditorExportPreset> &p_prese
if (err) {
return err;
}
OS::get_singleton()->shell_open(path);
OS::get_singleton()->shell_open(String("file://") + path);
return OK;
}