summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_drag.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-11-07 02:35:00 +0000
committerCarl Hetherington <carl@carlh.net>2010-11-07 02:35:00 +0000
commit94e069b14a904093fc846de1b4d4c3bd62440d64 (patch)
tree896c4e79b6dce609e6334463829eb701c9db0f5d /gtk2_ardour/editor_drag.h
parent15b5aae173e85ec18b608ee800a475727d0a4b9d (diff)
Fix zoom cursor SNAFU (#274). Increase move threshold for zoom drags so that clicks are more likely to work.
git-svn-id: svn://localhost/ardour2/branches/3.0@7978 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_drag.h')
-rw-r--r--gtk2_ardour/editor_drag.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk2_ardour/editor_drag.h b/gtk2_ardour/editor_drag.h
index a0281fc427..67bd43e2b5 100644
--- a/gtk2_ardour/editor_drag.h
+++ b/gtk2_ardour/editor_drag.h
@@ -808,6 +808,10 @@ public:
void finished (GdkEvent *, bool);
void aborted ();
+ std::pair<ARDOUR::framecnt_t, int> move_threshold () const {
+ return std::make_pair (4, 4);
+ }
+
private:
bool _zoom_out;
};