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
--- 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;
}