From 036550c8b73edd25963ba13849a7537bc7df1ed1 Mon Sep 17 00:00:00 2001 From: Michael Mallan Date: Mon, 6 Jan 2025 09:43:58 +0000 Subject: [PATCH] Revert 'hide progress bar once export completed' This reverts commit 98195e03b6878cd31e1d34ba246700b6ae95ceb1. The progress bar can disappear too quickly. --- liana-gui/src/app/view/export.rs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/liana-gui/src/app/view/export.rs b/liana-gui/src/app/view/export.rs index e47e87af..af9e9b2d 100644 --- a/liana-gui/src/app/view/export.rs +++ b/liana-gui/src/app/view/export.rs @@ -54,18 +54,16 @@ pub fn export_modal<'a>( 100.0 } }; - let progress_bar_row = (*state != ExportState::Ended).then_some( - Row::new() - .push(Space::with_width(30)) - .push(progress_bar(0.0..=100.0, p)) - .push(Space::with_width(30)), - ); + let progress_bar_row = Row::new() + .push(Space::with_width(30)) + .push(progress_bar(0.0..=100.0, p)) + .push(Space::with_width(30)); card::simple( Column::new() .spacing(10) .push(Container::new(h4_bold(format!("Export {export_type}"))).width(Length::Fill)) .push(Space::with_height(Length::Fill)) - .push_maybe(progress_bar_row) + .push(progress_bar_row) .push(Space::with_height(Length::Fill)) .push(Row::new().push(text(msg))) .push(Space::with_height(Length::Fill))