Add empty trash, fixes #118

This commit is contained in:
Jeremy Soller 2024-05-09 13:24:06 -06:00
parent 99c378873a
commit 1116eaa05a
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
5 changed files with 91 additions and 15 deletions

View file

@ -618,6 +618,9 @@ impl Application for App {
tab::Command::DropFiles(_, _) => {
log::warn!("DropFiles not supported in dialog");
}
tab::Command::EmptyTrash => {
log::warn!("EmptyTrash not supported in dialog");
}
tab::Command::FocusButton(id) => {
commands.push(widget::button::focus(id));
}