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 | |
parent | 1d0fb78aa2dcda5e31be85a4bac263792e1535bc (diff) |
Add short tooltip text for sample selection frame.
Diffstat (limited to 'plugingui')
-rw-r--r-- | plugingui/maintab.cc | 6 | ||||
-rw-r--r-- | plugingui/maintab.h | 2 |
2 files changed, 7 insertions, 1 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); diff --git a/plugingui/maintab.h b/plugingui/maintab.h index eb3e666..3e5eb1f 100644 --- a/plugingui/maintab.h +++ b/plugingui/maintab.h @@ -75,7 +75,7 @@ private: FrameWidget bleedcontrol_frame{this, true}; FrameWidget resampling_frame{this, true}; FrameWidget timing_frame{this, true}; - FrameWidget sampleselection_frame{this, false}; + FrameWidget sampleselection_frame{this, false, true}; FrameWidget visualizer_frame{this, false}; DrumkitframeContent drumkitframe_content; |