From 320a97f9fb117a91cf469eca1d25a97b1431ead2 Mon Sep 17 00:00:00 2001 From: yggverse Date: Wed, 18 Dec 2024 15:41:36 +0200 Subject: [PATCH] update navigation widget on entry activate --- src/app/browser/window/tab/item/page/search/form.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/browser/window/tab/item/page/search/form.rs b/src/app/browser/window/tab/item/page/search/form.rs index cf6ab680..eb1fa273 100644 --- a/src/app/browser/window/tab/item/page/search/form.rs +++ b/src/app/browser/window/tab/item/page/search/form.rs @@ -85,6 +85,7 @@ impl Form { if !this.text().is_empty() { match navigation.forward(subject) { Some((mut start, _)) => { + navigation.update(); result.update(navigation.position(), navigation.total()); scroll_to_iter(&subject.text_view, &mut start) }