Merge pull request #26635 from bruvzg/js_preview_url_fix

Fix HTML5 quick preview URL
This commit is contained in:
Rémi Verschelde 2019-03-05 16:58:04 +01:00 committed by GitHub
commit ebb5b84a8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
}