Removed mouse use since is not working, removed some prints and avoid passing mousemove events if the left button is not pressed.

This commit is contained in:
Filippo Scognamiglio
2014-07-07 00:38:08 +02:00
parent 93e40ade4a
commit 85c7d8ea97
5 changed files with 14 additions and 24 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ Emulation::Emulation() :
QObject::connect(&_bulkTimer2, SIGNAL(timeout()), this, SLOT(showBulk()) );
// listen for mouse status changes
connect( this , SIGNAL(programUsesMouseChanged(bool)) ,
connect( this , SIGNAL(programUsesMouseChanged(bool)) ,
SLOT(usesMouseChanged(bool)) );
}