This commit is contained in:
hankertrix 2025-05-02 13:59:52 +08:00
parent 993741f050
commit 7a88621b92

View file

@ -32,7 +32,7 @@ impl Tab {
let mut it = self.selected_or_hovered().peekable();
if opt.hovered {
if let Some(h) = self.hovered() {
it = Box::new([&h.url, &h.url].into_iter());
it = Box::new([&h.url, &h.url].into_iter()).peekable();
} else { return };
}
while let Some(u) = it.next() {