diff widgets/PluginParameterDialog.cpp @ 76:45ba0b381c5d

* Fix long-standing off-by-1 bug in WaveFileModel that was getting us the wrong values for almost all audio data when merging channels (channel == -1) * Implement cut, copy and paste * Make draw mode work properly in time value layer * Minor fixes to CSV import
author Chris Cannam
date Fri, 07 Apr 2006 17:50:33 +0000
parents 1d176af87056
children 551d7ae05526
line wrap: on
line diff
--- a/widgets/PluginParameterDialog.cpp	Thu Apr 06 12:12:41 2006 +0000
+++ b/widgets/PluginParameterDialog.cpp	Fri Apr 07 17:50:33 2006 +0000
@@ -131,7 +131,7 @@
                 channelLayout->addWidget(new QLabel(tr("This plugin only has a single channel input,\nbut the source has %1 channels.").arg(sourceChannels)));
 
                 QComboBox *channelCombo = new QComboBox;
-                channelCombo->addItem(tr("Use sum of source channels"));
+                channelCombo->addItem(tr("Use mean of source channels"));
                 for (int i = 0; i < sourceChannels; ++i) {
                     channelCombo->addItem(tr("Use channel %1 only").arg(i + 1));
                 }