fix grabbing issue on sides of piano roll

This commit is contained in:
David Rose 2004-01-14 00:28:57 +00:00
parent bb2ee7c2b9
commit e3e024b94c

View File

@ -423,8 +423,9 @@ consider_drag_start(int mouse_x, int mouse_y, int width, int height) {
return DM_guide_bar;
}
} else {
// The mouse is above or below the graph; maybe create a new
} else if (mouse_x < _left_margin - 2 ||
mouse_x > width - _right_margin + 2) {
// The mouse is left or right of the graph; maybe create a new
// guide bar.
return DM_new_guide_bar;
}