--- qsampler/trunk/src/qsamplerChannelStrip.ui.h 2004/10/06 15:42:59 267 +++ qsampler/trunk/src/qsamplerChannelStrip.ui.h 2004/10/11 12:27:39 280 @@ -198,10 +198,10 @@ } // MIDI Port/Channel... - if (m_pChannel->midiChannel() > 0) - MidiPortChannelTextLabel->setText(QString("%1 / %2").arg(m_pChannel->midiPort()).arg(m_pChannel->midiChannel())); - else + if (m_pChannel->midiChannel() == LSCP_MIDI_CHANNEL_ALL) MidiPortChannelTextLabel->setText(QString("%1 / *").arg(m_pChannel->midiPort())); + else + MidiPortChannelTextLabel->setText(QString("%1 / %2").arg(m_pChannel->midiPort()).arg(m_pChannel->midiChannel() + 1)); // And update the both GUI volume elements. updateChannelVolume();