diff options
author | Paul Rouget <me@paulrouget.com> | 2019-08-01 02:00:04 +0200 |
---|---|---|
committer | Paul Rouget <me@paulrouget.com> | 2019-08-02 00:45:42 +0200 |
commit | b7667ff362dd9b682d4dfe1a4001bbe3719c1446 (patch) | |
tree | 7e744902d69aabad357f7909b56a09f7b6260fd8 /ports/libsimpleservo | |
parent | 196c511d5ebf81b3fe202c5e0c5c1972a6408ab7 (diff) | |
download | servo-b7667ff362dd9b682d4dfe1a4001bbe3719c1446.tar.gz servo-b7667ff362dd9b682d4dfe1a4001bbe3719c1446.zip |
Clarify hololens loop
Diffstat (limited to 'ports/libsimpleservo')
-rw-r--r-- | ports/libsimpleservo/api/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ports/libsimpleservo/api/src/lib.rs b/ports/libsimpleservo/api/src/lib.rs index 02c80a2f402..f9fe314b8e5 100644 --- a/ports/libsimpleservo/api/src/lib.rs +++ b/ports/libsimpleservo/api/src/lib.rs @@ -488,7 +488,8 @@ impl ServoGlue { .host_callbacks .on_allow_navigation(url.to_string()); let window_event = WindowEvent::AllowNavigationResponse(pipeline_id, data); - let _ = self.process_event(window_event); + self.events.push(window_event); + let _ = self.perform_updates(); } }, EmbedderMsg::HistoryChanged(entries, current) => { |