summaryrefslogtreecommitdiff
path: root/render/html_interaction.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/html_interaction.c')
-rw-r--r--render/html_interaction.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/render/html_interaction.c b/render/html_interaction.c
index 177eae294..153e4f79b 100644
--- a/render/html_interaction.c
+++ b/render/html_interaction.c
@@ -1004,8 +1004,7 @@ void html_mouse_action(struct content *c, struct browser_window *bw,
}
/* fire dom click event */
- if ((mouse & BROWSER_MOUSE_CLICK_1) ||
- (mouse & BROWSER_MOUSE_CLICK_2)) {
+ if (mouse & BROWSER_MOUSE_CLICK_1) {
fire_dom_event(corestring_dom_click, node, true, true);
}