From: Andrew Dolgov Date: Thu, 4 Dec 2008 06:06:48 +0000 (+0100) Subject: enable_resize: do not prevent right click in onmousedown X-Git-Tag: 1.2.30~23 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=a4724aa3f5faba200748a07a983c78220db61d35;p=tt-rss.git enable_resize: do not prevent right click in onmousedown --- diff --git a/feedlist.js b/feedlist.js index ff4ab7c5..5a279d8c 100644 --- a/feedlist.js +++ b/feedlist.js @@ -554,6 +554,10 @@ function enable_resize(b) { function mouse_down_handler(e) { try { + + /* do not prevent right click */ + if (e.button && e.button == 2) return; + if (resize_enabled) { mouse_is_down = true; mouse_x = 0;