mirror of
https://github.com/RGBCube/serenity
synced 2025-07-12 19:17:35 +00:00
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:
parent
02cc3ac21f
commit
181eacd3ba
1 changed files with 2 additions and 2 deletions
|
@ -850,8 +850,8 @@ void TerminalWidget::context_menu_event(GUI::ContextMenuEvent& event)
|
||||||
|
|
||||||
auto icon = Gfx::Bitmap::load_from_file(handler_icon);
|
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&) {
|
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);
|
Desktop::Launcher::open(m_context_menu_href, handler);
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
m_context_menu_for_hyperlink->add_action(GUI::Action::create("Copy URL", [this](auto&) {
|
m_context_menu_for_hyperlink->add_action(GUI::Action::create("Copy URL", [this](auto&) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue