From 79ca201e7bb824542f6169c2fc925cea240b389e Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Wed, 31 Dec 2025 15:00:54 -0500 Subject: [PATCH] Fix the symbol filter not working in the mapping view --- objdiff-gui/src/views/diff.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objdiff-gui/src/views/diff.rs b/objdiff-gui/src/views/diff.rs index f7c4a67..457b7d1 100644 --- a/objdiff-gui/src/views/diff.rs +++ b/objdiff-gui/src/views/diff.rs @@ -741,7 +741,7 @@ fn diff_col_ui( ui, SymbolDiffContext { obj, diff }, &state.symbol_state, - SymbolFilter::Mapping(other_symbol_idx, None), + SymbolFilter::Mapping(other_symbol_idx, state.search_regex.as_ref()), appearance, column, open_sections,