From 15fe07638e44ca63290eaef972842624758b00ce Mon Sep 17 00:00:00 2001 From: Steve Daulton Date: Mon, 9 May 2016 09:20:06 +0100 Subject: [PATCH] Fix bug 1316 Improve effect descriptions for tone and chirp generator. --- src/effects/ToneGen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/effects/ToneGen.cpp b/src/effects/ToneGen.cpp index 12c92db3e..f93fcaccd 100644 --- a/src/effects/ToneGen.cpp +++ b/src/effects/ToneGen.cpp @@ -129,8 +129,8 @@ wxString EffectToneGen::GetSymbol() wxString EffectToneGen::GetDescription() { return mChirp - ? XO("Generates four different types of tone waveform while allowing starting and ending amplitude and frequency") - : XO("Generates four different types of tone waveform"); + ? XO("Generates an ascending or descending tone of one of four types") + : XO("Generates a constant frequency tone of one of four types"); } // EffectIdentInterface implementation