Skip to content

Commit

Permalink
fix messages when ripping has finished
Browse files Browse the repository at this point in the history
  • Loading branch information
B0ney committed Oct 22, 2023
1 parent a7fc9a8 commit ba1a2d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/screen/main_panel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ pub fn view_finished<'a>(
column![
text("Done! \\(^_^)/"),
text("Drag and Drop"),
text(format!("Took {}", time)),
text(format!("{}", time)),
Space::with_height(15),
continue_button
]
Expand All @@ -128,7 +128,7 @@ pub fn view_finished<'a>(
column![
text("Cancelled"),
text("Drag and Drop"),
text(format!("Took {}", time)),
text(format!("{}", time)),
Space::with_height(15),
continue_button
]
Expand All @@ -151,7 +151,7 @@ pub fn view_finished<'a>(
CompleteState::SomeErrors(errors) => {
let message = column![
centered_text("Done... But xmodits could not rip everything... (._.)"),
text(format!("Took {}", time)),
text(format!("{}", time)),
];

let buttons = row![continue_button, save_errors_button]
Expand Down Expand Up @@ -195,7 +195,7 @@ pub fn view_finished<'a>(
.on_press(Message::Open(log.display().to_string()))
.style(theme::Button::HyperlinkInverted),
centered_text(format!("{} errors written", total)),
text(format!("Took {}", time)),
text(format!("{}", time)),
// space,
row![continue_button]
.padding(4)
Expand Down

0 comments on commit ba1a2d0

Please sign in to comment.