Add context menu for breadcrumbs

* Open in new tab
* Open in new window
This commit is contained in:
Jason Rodney Hansen 2024-06-30 10:05:58 -06:00 committed by Jeremy Soller
parent 0971f6f20f
commit 7d3ae07067
4 changed files with 159 additions and 24 deletions

View file

@ -641,6 +641,9 @@ impl Application for App {
tab::Command::OpenInNewTab(_path) => {
log::warn!("OpenInNewTab not supported in dialog");
}
tab::Command::OpenInNewWindow(_path) => {
log::warn!("OpenInNewWindow not supported in dialog");
}
tab::Command::Scroll(id, offset) => {
commands.push(scrollable::scroll_to(id, offset));
}