Okay that makes sense! Thanks! 
I don't have the actual code in front of me at the moment, but basically my code is something like this:
This is to play the sound, holding down the "s" key
case Qt::Key_S: sButton->setDown(true); keyS->play(); break;
case Qt::Key_S: sButton->setDown(true); keyS->play(); break;
To copy to clipboard, switch view to plain text mode
This is to stop the sound
case Qt::Key_S: sButton->setDown(false); keyS->stop(); break;
case Qt::Key_S: sButton->setDown(false); keyS->stop(); break;
To copy to clipboard, switch view to plain text mode
Bookmarks