summaryrefslogtreecommitdiffstats
path: root/src/widgets/process_table/proc_widget_data.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/process_table/proc_widget_data.rs')
-rw-r--r--src/widgets/process_table/proc_widget_data.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/widgets/process_table/proc_widget_data.rs b/src/widgets/process_table/proc_widget_data.rs
index 5f454662..0537a474 100644
--- a/src/widgets/process_table/proc_widget_data.rs
+++ b/src/widgets/process_table/proc_widget_data.rs
@@ -263,6 +263,7 @@ impl ProcWidgetData {
self.wps += other.wps;
self.total_read += other.total_read;
self.total_write += other.total_write;
+ self.time = self.time.max(other.time);
#[cfg(feature = "gpu")]
{
self.gpu_mem_usage = match (&self.gpu_mem_usage, &other.gpu_mem_usage) {