diff --git a/src/app/browser/window/tab/item/page/search/subject/tag.rs b/src/app/browser/window/tab/item/page/search/subject/tag.rs index 184abea7..3f79a698 100644 --- a/src/app/browser/window/tab/item/page/search/subject/tag.rs +++ b/src/app/browser/window/tab/item/page/search/subject/tag.rs @@ -20,7 +20,7 @@ impl Tag { // Init tag table // keep order as `current` should overwrite `found` tag style // https://docs.gtk.org/gtk4/method.TextTag.set_priority.html - for &tag in &[¤t, &found] { + for &tag in &[&found, ¤t] { if !table.add(tag) { todo!() }