# HG changeset patch # User nemo # Date 1382663902 14400 # Node ID 9577634bd2841ba0b811e75b7205934c48796e1d # Parent 45d2d1ce01741eef8ba7a429a8c96924e80992bd I can't find any reason why the event filtering was halting further event handling w/ a true here. In any case removing it fixes bug #658 diff -r 45d2d1ce0174 -r 9577634bd284 QTfrontend/ui/mouseoverfilter.cpp --- a/QTfrontend/ui/mouseoverfilter.cpp Thu Oct 24 14:02:26 2013 -0400 +++ b/QTfrontend/ui/mouseoverfilter.cpp Thu Oct 24 21:18:22 2013 -0400 @@ -49,8 +49,6 @@ { SDLInteraction::instance().playSoundFile("/Sounds/steps.ogg"); } - - return true; } else if (event->type() == QEvent::Leave) { @@ -63,7 +61,6 @@ else abstractpage->setButtonDescription(""); } - return false; }