Hi all,

I'm porting a number of progs from Qt4 to Qt5 on mswindows and cannot get the mouse double click event to fire on qt5.

I setup a simple mainwindow widget with an event catcher:

bool MainWindow::event(QEvent *event)
{
if((event->type() >= 2) && (event->type() <= 5))
qDebug() << (int)event->type() ;
}

but it only lists press, release, press, release type codes for double clicks. I've tried it on XP and Win7 - both same result

I've noticed on various forums chatter that the double click event was altered in qt5 to make it compatable with some other os's

Is there now a setup option that needs to be configured for Qt5 to enable double clicks or do I need to use a timer to build my own double click detector ?


SteveH