From 3d1d2feff7cab0063931d8b1bc9cee3b296b4141 Mon Sep 17 00:00:00 2001 From: nick_m Date: Sun, 20 Nov 2016 04:55:34 +1100 Subject: [PATCH] make it clear that there is no drag threshold for NoteCreateDrag. --- gtk2_ardour/editor_drag.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gtk2_ardour/editor_drag.h b/gtk2_ardour/editor_drag.h index 1b8bfb1408..0a413f05ba 100644 --- a/gtk2_ardour/editor_drag.h +++ b/gtk2_ardour/editor_drag.h @@ -591,6 +591,11 @@ private: double y_to_region (double) const; ARDOUR::framecnt_t grid_frames (framepos_t) const; + /** @return minimum number of frames (in x) and pixels (in y) that should be considered a movement */ + virtual std::pair move_threshold () const { + return std::make_pair (0, 0); + } + MidiRegionView* _region_view; ArdourCanvas::Rectangle* _drag_rect; framepos_t _note[2]; -- 2.30.2