mirror of
https://github.com/servo/servo.git
synced 2025-08-21 13:25:34 +01:00
make Opts.url an Option<> type, only emit initial url load if url exists
this is a necessary change for embedded apps to prevent an initial about:blank page load from overwriting whatever the app was actually trying to load
This commit is contained in:
parent
fcf449517d
commit
b1ae5e7523
3 changed files with 11 additions and 7 deletions
|
@ -74,6 +74,7 @@ pub extern "C" fn cef_initialize(args: *const cef_main_args_t,
|
|||
temp_opts.hard_fail = false;
|
||||
temp_opts.enable_text_antialiasing = true;
|
||||
temp_opts.resources_path = None;
|
||||
temp_opts.url = None;
|
||||
opts::set(temp_opts);
|
||||
|
||||
if unsafe { (*settings).windowless_rendering_enabled != 0 } {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue