Ladybird/Qt: Don't change to new tab with 'Open in New Tab'

It now just opens a new tab, without changing the current tab.
This commit is contained in:
Jamie Mansfield 2024-08-12 12:50:56 +01:00 committed by Jelle Raaijmakers
parent 6133707df8
commit df34ee058b
Notes: github-actions[bot] 2024-08-12 13:25:52 +00:00

View file

@ -852,7 +852,7 @@ void Tab::open_link(URL::URL const& url)
void Tab::open_link_in_new_tab(URL::URL const& url)
{
view().on_link_click(url, "_blank", 0);
view().on_link_click(url, "_blank", Web::UIEvents::Mod_Ctrl);
}
void Tab::copy_link_url(URL::URL const& url)