trigger_ui: add some tooltips

This commit is contained in:
Ben Loftis 2022-02-18 19:25:43 -06:00
parent 5f0c7fe3d6
commit ab44c9a750
2 changed files with 28 additions and 0 deletions

View file

@ -150,6 +150,12 @@ AudioTriggerPropertiesBox::AudioTriggerPropertiesBox ()
_beat_spinner.set_can_focus(false);
_beat_spinner.signal_changed ().connect (sigc::mem_fun (*this, &AudioTriggerPropertiesBox::beats_changed));
set_tooltip(_stretch_toggle, _("If enabled, the clip will be stretched to match the current timeline tempo"));
set_tooltip(_stretch_selector, _("Select Crisp for drum loops, Smooth for sustained notes, or Mixed if the clip has both"));
set_tooltip(_beat_spinner, _("Length of the clip, in beats. Changing this will change the tempo"));
set_tooltip(_half_button, _("Click to halve the tempo for the clip. This will result in it playing faster when stretched on the timeline"));
set_tooltip(_dbl_button, _("Click to double the tempo for the clip. This will result in it playing slower when stretched on the timeline"));
}
AudioTriggerPropertiesBox::~AudioTriggerPropertiesBox ()