summaryrefslogtreecommitdiff
path: root/gtk2_ardour/rc_option_editor.cc
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2016-08-20 01:46:04 +1000
committernick_m <mainsbridge@gmail.com>2016-08-20 01:46:04 +1000
commit269a08a2b1cdf1f72c49c715f85ead2e16911854 (patch)
treec704d3e279504a2198bd6b8581af11b1d039d5f1 /gtk2_ardour/rc_option_editor.cc
parent2d7bdda0be0fca64a51c2e26c992a25a517541eb (diff)
Allow both types of constrained drag (again).
- Holding the constraint modifier at the time of grab gives constrained x. - Holding the constraint modifier after the grab but before the first motion constrains to the direction of first movement.
Diffstat (limited to 'gtk2_ardour/rc_option_editor.cc')
-rw-r--r--gtk2_ardour/rc_option_editor.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc
index 7596c6fb53..6296793b46 100644
--- a/gtk2_ardour/rc_option_editor.cc
+++ b/gtk2_ardour/rc_option_editor.cc
@@ -545,7 +545,9 @@ public:
_constraint_modifier_combo.signal_changed().connect (sigc::mem_fun(*this, &KeyboardOptions::constraint_modifier_chosen));
std::string mod_str = string_compose (X_("%1-%2"), Keyboard::primary_modifier_name (), Keyboard::level4_modifier_name ());
Gtkmm2ext::UI::instance()->set_tip (_constraint_modifier_combo,
- (string_compose (_("<b>Recommended Setting: %1</b>%2"),
+ (string_compose (_("At the beginning of a drag, applies vertical constraint (mostly)."
+ " Holding down after grabbing an object but before the first move constrains the"
+ " drag to the direction of the first movement. <b>Recommended Setting: %1</b>%2"),
#ifdef __APPLE__
Keyboard::primary_modifier_name (),
#else