Fix toasts for Extract and Compress

This commit is contained in:
Jason Rodney Hansen 2025-03-23 14:30:22 -06:00
parent 5fd7be593a
commit 162768af8f

View file

@ -2914,6 +2914,12 @@ impl Application for App {
)
.map(cosmic::Action::App),
);
} else {
commands.push(
self.toasts
.push(widget::toaster::Toast::new(description))
.map(cosmic::Action::App),
);
}
}