diff options
author | webbeef <me@webbeef.org> | 2024-06-18 04:10:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-18 11:10:14 +0000 |
commit | bd15a4fbd803d2a7d73f440efd741d98f7cc72a6 (patch) | |
tree | 842f8102af9721fdac995c1ae6ee4a9cc243c86a /components/servo | |
parent | 1d2949f2b3daa3861cdc3e519f4ae6a6e3b8aaf1 (diff) | |
download | servo-bd15a4fbd803d2a7d73f440efd741d98f7cc72a6.tar.gz servo-bd15a4fbd803d2a7d73f440efd741d98f7cc72a6.zip |
servoshell: Reset link status when loading a new document (#32518)
* Reset link status when loading a new document
* Reset hover link when navigating back or forward
Diffstat (limited to 'components/servo')
-rw-r--r-- | components/servo/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/servo/lib.rs b/components/servo/lib.rs index d6b3d38590b..282fee3f67c 100644 --- a/components/servo/lib.rs +++ b/components/servo/lib.rs @@ -683,6 +683,10 @@ where if let Err(e) = self.constellation_chan.send(msg) { warn!("Sending navigation to constellation failed ({:?}).", e); } + self.messages_for_embedder.push(( + Some(top_level_browsing_context_id), + EmbedderMsg::Status(None), + )); }, EmbedderEvent::Keyboard(key_event) => { |