--- qsampler/trunk/src/qsamplerMainForm.ui.h 2004/06/26 14:27:25 149 +++ qsampler/trunk/src/qsamplerMainForm.ui.h 2004/07/06 10:54:45 176 @@ -601,10 +601,10 @@ ts << "ADD CHANNEL" << endl; ts << "SET CHANNEL AUDIO_OUTPUT_TYPE " << iChannelID << " " << pChannel->audioDriver() << endl; ts << "SET CHANNEL MIDI_INPUT_TYPE " << iChannelID << " " << pChannel->midiDriver() << endl; - // ts << "SET CHANNEL MIDI_INPUT_PORT " << iChannelID << " " << pChannel->midiPort() << endl; + ts << "SET CHANNEL MIDI_INPUT_PORT " << iChannelID << " " << pChannel->midiPort() << endl; ts << "SET CHANNEL MIDI_INPUT_CHANNEL " << iChannelID << " " << pChannel->midiChannel() << endl; ts << "LOAD ENGINE " << pChannel->engineName() << " " << iChannelID << endl; - ts << "LOAD INSTRUMENT NON_MODAL " << pChannel->instrumentFile() << " " << pChannel->instrumentNr() << " " << iChannelID << endl; + ts << "LOAD INSTRUMENT NON_MODAL '" << pChannel->instrumentFile() << "' " << pChannel->instrumentNr() << " " << iChannelID << endl; ts << "SET CHANNEL VOLUME " << iChannelID << " " << pChannel->volume() << endl; ts << endl; // Try to keep it snappy :) @@ -800,7 +800,7 @@ return; // Just invoque the channel strip procedure. - pChannel->channelSetup(); + pChannel->channelSetup(false); } @@ -1024,6 +1024,11 @@ sText += tr("Debugging option enabled."); sText += "
"; #endif +#ifndef CONFIG_LIBGIG + sText += ""; + sText += tr("GIG (libgig) file support disabled."); + sText += "
"; +#endif sText += "
\n"; sText += tr("Using") + ": "; sText += ::lscp_client_package(); @@ -1326,7 +1331,7 @@ // Before we show it up, may be we'll // better ask for some initial values? if (bPrompt) - pChannel->channelSetup(); + pChannel->channelSetup(true); // Now we show up us to the world. pChannel->show(); // Only then, we'll auto-arrange...