diff --git a/src/app/browser/window/tab/item/page/content/text/search/navigation.rs b/src/app/browser/window/tab/item/page/content/text/search/navigation.rs index 632882f3..78e8f499 100644 --- a/src/app/browser/window/tab/item/page/content/text/search/navigation.rs +++ b/src/app/browser/window/tab/item/page/content/text/search/navigation.rs @@ -83,7 +83,7 @@ impl Navigation { let index = self.index.take(); match self.matches.borrow().get(back(index)) { Some((start, end)) => { - self.text_buffer.apply_tag(&self.current_tag, &start, &end); + self.text_buffer.apply_tag(&self.current_tag, start, end); self.index.replace(if index == 0 { len_to_index(self.matches.borrow().len()) } else { @@ -110,7 +110,7 @@ impl Navigation { let next = forward(index); match self.matches.borrow().get(next) { Some((start, end)) => { - self.text_buffer.apply_tag(&self.current_tag, &start, &end); + self.text_buffer.apply_tag(&self.current_tag, start, end); self.index.replace(next); Some((*start, *end)) }