From 5941bec6c13e802336ec51bb25024fa75a087dcf Mon Sep 17 00:00:00 2001 From: Brian Mattern Date: Mon, 3 Jun 2019 14:08:57 -0700 Subject: [PATCH] Update process list immediately when filter changes. --- src/widgets/proc.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/widgets/proc.go b/src/widgets/proc.go index d94a5bf..fa1b900 100644 --- a/src/widgets/proc.go +++ b/src/widgets/proc.go @@ -101,6 +101,7 @@ func (self *ProcWidget) Filter() string { func (self *ProcWidget) SetFilter(filter string) { self.filter = filter + self.update() } func (self *ProcWidget) EditingFilter() bool {