diff options
Diffstat (limited to 'src/ui.rs')
-rw-r--r-- | src/ui.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -85,7 +85,7 @@ impl UI { if let Some(reg) = trace_next(pid)? { have_to_print ^= true; if have_to_print { - if !filters.is_empty() && !filters.contains(®.rax()) { + if !filters.is_empty() && !filters.contains(®.name()) { continue; } self.add_line(reg); |