LibVT: Pass the handler name to Launcher::open_url to control what gets launched

Now we can pick which application gets opened in the context menu for
URLs in the Terminal \o/
This commit is contained in:
Nicholas Hollett 2020-05-16 14:46:28 +01:00 committed by Andreas Kling
parent 02cc3ac21f
commit 181eacd3ba

View file

@ -850,8 +850,8 @@ void TerminalWidget::context_menu_event(GUI::ContextMenuEvent& event)
auto icon = Gfx::Bitmap::load_from_file(handler_icon);
m_context_menu_for_hyperlink->add_action(GUI::Action::create(String::format("Open in %s", handler_name.characters()), move(icon), [this](auto&) {
Desktop::Launcher::open(m_context_menu_href);
m_context_menu_for_hyperlink->add_action(GUI::Action::create(String::format("Open in %s", handler_name.characters()), move(icon), [this, handler](auto&) {
Desktop::Launcher::open(m_context_menu_href, handler);
}));
}
m_context_menu_for_hyperlink->add_action(GUI::Action::create("Copy URL", [this](auto&) {