--- qsampler/trunk/src/qsamplerMainForm.cpp 2010/03/31 09:07:30 2077 +++ qsampler/trunk/src/qsamplerMainForm.cpp 2010/07/15 08:03:32 2108 @@ -545,7 +545,8 @@ QListIterator iter(pMimeData->urls()); while (iter.hasNext()) { const QString& sPath = iter.next().toLocalFile(); - if (Channel::isInstrumentFile(sPath)) { + // if (Channel::isDlsInstrumentFile(sPath)) { + if (QFileInfo(sPath).exists()) { // Try to create a new channel from instrument file... Channel *pChannel = new Channel(); if (pChannel == NULL)