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
authornemo
Thu, 24 Oct 2013 21:18:22 -0400
changeset 9577 9577634bd284
parent 9575 45d2d1ce0174
child 9579 1f20cc6a642a
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
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;
 }