From f6a35e5fbfb4a5e9f92a126dae0cca103727d9d4 Mon Sep 17 00:00:00 2001 From: Quentin Rameau Date: Thu, 19 Nov 2015 13:19:27 +0100 Subject: Adapted buttonrelease() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use the current hit test (c->mousepos) to determine where the mouse pointer is. It is possible to link an action to a click and still propagate the event after that by setting the “stop event” parameter of a Button to 0. --- config.def.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config.def.h') diff --git a/config.def.h b/config.def.h index a274b1e..2b3bb27 100644 --- a/config.def.h +++ b/config.def.h @@ -129,9 +129,9 @@ static Key keys[] = { }; /* button definitions */ -/* where can be OnDoc, OnLink, OnImg, OnMedia, OnEdit, OnBar, OnSel, OnAny */ +/* target can be OnDoc, OnLink, OnImg, OnMedia, OnEdit, OnBar, OnSel, OnAny */ static Button buttons[] = { - /* where event mask button function argument stop event */ + /* target event mask button function argument stop event */ { OnLink, 0, 2, linkopenembed, { 0 }, 1 }, { OnLink, MODKEY, 2, linkopen, { 0 }, 1 }, { OnLink, MODKEY, 1, linkopen, { 0 }, 1 }, -- cgit v1.2.3