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) {
|
||||
try {
|
||||
|
||||
/* do not prevent right click */
|
||||
if (e.button && e.button == 2) return;
|
||||
|
||||
if (resize_enabled) {
|
||||
mouse_is_down = true;
|
||||
mouse_x = 0;
|
||||
|
|
Loading…
Reference in New Issue