From eb6253ccc183de419bce8e70c409b46119dcba24 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Mon, 14 Oct 2013 13:51:43 +0200 Subject: Fix regression where click on subject text wasn't selecting the message row --- program/js/list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/js/list.js b/program/js/list.js index f05ac1aaa..996d30808 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -409,7 +409,7 @@ drag_row: function(e, id) var evtarget = rcube_event.get_target(e), tagname = evtarget.tagName.toLowerCase(); - if (this.dont_select || (evtarget && (tagname == 'input' || tagname == 'img' || evtarget.onclick))) + if (this.dont_select || (evtarget && (tagname == 'input' || tagname == 'img' || (tagname != 'a' && evtarget.onclick)))) return true; // accept right-clicks -- cgit v1.2.3