summaryrefslogtreecommitdiff
path: root/src/ui.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.rs')
-rw-r--r--src/ui.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui.rs b/src/ui.rs
index 1fe15e8..b7e342d 100644
--- a/src/ui.rs
+++ b/src/ui.rs
@@ -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(&reg.rax()) {
+ if !filters.is_empty() && !filters.contains(&reg.name()) {
continue;
}
self.add_line(reg);