From a4724aa3f5faba200748a07a983c78220db61d35 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 4 Dec 2008 07:06:48 +0100 Subject: enable_resize: do not prevent right click in onmousedown --- feedlist.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'feedlist.js') diff --git a/feedlist.js b/feedlist.js index ff4ab7c5a..5a279d8cf 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; -- cgit v1.2.3