mirror of
https://github.com/YACReader/yacreader
synced 2025-07-21 06:24:39 -04:00
added workaround for mouseMoveEvent not working in MacOSX 10.9
This commit is contained in:
@ -488,7 +488,9 @@ void Viewer::mouseMoveEvent(QMouseEvent * event)
|
||||
{
|
||||
if(goToFlow->isVisible())
|
||||
{
|
||||
animateHideGoToFlow();
|
||||
QPoint gtfPos = goToFlow->mapFrom(this,event->pos());
|
||||
if(gtfPos.y() < 0 || gtfPos.x()<0 || gtfPos.x()>goToFlow->width())//TODO this extra check is for Mavericks (mouseMove over goToFlowGL seems to be broken)
|
||||
animateHideGoToFlow();
|
||||
//goToFlow->hide();
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user