mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 17:56:34 +00:00
enable_resize: do not prevent right click in onmousedown
This commit is contained in:
@@ -554,6 +554,10 @@ function enable_resize(b) {
|
|||||||
|
|
||||||
function mouse_down_handler(e) {
|
function mouse_down_handler(e) {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
|
/* do not prevent right click */
|
||||||
|
if (e.button && e.button == 2) return;
|
||||||
|
|
||||||
if (resize_enabled) {
|
if (resize_enabled) {
|
||||||
mouse_is_down = true;
|
mouse_is_down = true;
|
||||||
mouse_x = 0;
|
mouse_x = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user