diff options
author | André Nusser <andre.nusser@googlemail.com> | 2019-05-12 01:56:44 +0200 |
---|---|---|
committer | André Nusser <andre.nusser@googlemail.com> | 2019-05-12 01:56:44 +0200 |
commit | 585999c31627b61b98414e1966847a0e8a98b3ba (patch) | |
tree | eaf3eba312304a191d3dc6790647eb672258f8ef /plugingui/maintab.cc | |
parent | 1d0fb78aa2dcda5e31be85a4bac263792e1535bc (diff) |
Add short tooltip text for sample selection frame.
Diffstat (limited to 'plugingui/maintab.cc')
-rw-r--r-- | plugingui/maintab.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugingui/maintab.cc b/plugingui/maintab.cc index cdc0b05..e2ea9d2 100644 --- a/plugingui/maintab.cc +++ b/plugingui/maintab.cc @@ -57,6 +57,12 @@ MainTab::MainTab(Widget* parent, humanizer_frame.setHelpText("Hello World\nThis is a nice World\n... I think"); add("Timing Humanizer", timing_frame, timingframe_content, 10, 1); add("Sample Selection", sampleselection_frame, sampleselectionframe_content, 10, 1); + sampleselection_frame.setHelpText( + "These three knobs influence how DrumGizmo selects its samples in the following way:\n" + " * Close: importance given to choosing a sample close to the actual MIDI value (after humanization)\n" + " * Diversity: importance given to choosing samples which haven't been played recently\n" + " * Random: amount of randomness added" + ); add("Visualizer", visualizer_frame, visualizerframe_content, 10, 1); add("Bleed Control", bleedcontrol_frame, bleedcontrolframe_content, 9, 1); add("Disk Streaming", diskstreaming_frame, diskstreamingframe_content, 10, 1); |