--- qsampler/trunk/src/qsamplerChannelStrip.ui.h 2005/05/08 16:19:34 518 +++ qsampler/trunk/src/qsamplerChannelStrip.ui.h 2005/05/08 17:04:10 519 @@ -230,9 +230,12 @@ m_pChannel->updateInstrumentName(); // Instrument name... - if (m_pChannel->instrumentName().isEmpty()) - InstrumentNameTextLabel->setText(' ' + qsamplerChannel::noInstrumentName()); - else + if (m_pChannel->instrumentName().isEmpty()) { + if (m_pChannel->instrumentStatus() >= 0) + InstrumentNameTextLabel->setText(' ' + qsamplerChannel::loadingInstrument()); + else + InstrumentNameTextLabel->setText(' ' + qsamplerChannel::noInstrumentName()); + } else InstrumentNameTextLabel->setText(' ' + m_pChannel->instrumentName()); return true;