From ee04671220690ec225112d49ece959239a3e2202 Mon Sep 17 00:00:00 2001 From: Quentin Rameau Date: Tue, 24 Nov 2015 23:18:06 +0100 Subject: [PATCH] Fix clickexternplayer(), no need to test the target again --- surf.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/surf.c b/surf.c index 0dd67b6..a5cfdd0 100644 --- a/surf.c +++ b/surf.c @@ -1425,10 +1425,8 @@ clickexternplayer(Client *c, const Arg *a, WebKitHitTestResult *h) { Arg arg; - if (webkit_hit_test_result_get_context(h) & OnMedia) { - arg = (Arg)VIDEOPLAY(webkit_hit_test_result_get_media_uri(h)); - spawn(c, &arg); - } + arg = (Arg)VIDEOPLAY(webkit_hit_test_result_get_media_uri(h)); + spawn(c, &arg); } int -- 2.20.1