From 3cce822ffc9d976b192b785f6800e5c6e722b3aa Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 3 Mar 2025 13:05:11 -0700 Subject: [PATCH] Fix multiple operation progress, fixes #842 --- src/app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.rs b/src/app.rs index 1460398..f866686 100644 --- a/src/app.rs +++ b/src/app.rs @@ -4292,13 +4292,13 @@ impl Application for App { "operations-running-finished", running = running, finished = finished, - percent = (total_progress as i32) + percent = ((total_progress * 100.0) as i32) ); } else { title = fl!( "operations-running", running = running, - percent = (total_progress as i32) + percent = ((total_progress * 100.0) as i32) ); } }