mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-09 18:10:59 +02:00
enable_resize: do not prevent right click in onmousedown
This commit is contained in:
parent
7cc1e4aed8
commit
a4724aa3f5
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user