summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--feedlist.js4
1 files changed, 4 insertions, 0 deletions
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;