summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/HtmlView.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-04-24 14:43:56 +0200
committerAndreas Kling <kling@serenityos.org>2020-04-24 14:43:56 +0200
commit5c2bdbf27fa1ea05d2690086306d269dd7f6922c (patch)
treef0a79624ce74241d2ff1516862e678993031b840 /Libraries/LibWeb/HtmlView.h
parentd5d8e87d565e147ec888358326787ed9cbaf83c8 (diff)
downloadserenity-5c2bdbf27fa1ea05d2690086306d269dd7f6922c.zip
Browser+LibWeb: Open link in new tab on Ctrl+Click :^)
Diffstat (limited to 'Libraries/LibWeb/HtmlView.h')
-rw-r--r--Libraries/LibWeb/HtmlView.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/HtmlView.h b/Libraries/LibWeb/HtmlView.h
index ddf830e3a8..51de2194b3 100644
--- a/Libraries/LibWeb/HtmlView.h
+++ b/Libraries/LibWeb/HtmlView.h
@@ -57,7 +57,7 @@ public:
void set_should_show_line_box_borders(bool value) { m_should_show_line_box_borders = value; }
- Function<void(const String& href, const String& target)> on_link_click;
+ Function<void(const String& href, const String& target, unsigned modifiers)> on_link_click;
Function<void(const String&)> on_link_hover;
Function<void(const String&)> on_title_change;
Function<void(const URL&)> on_load_start;