From: Ludovic Fauvet Date: Wed, 15 Oct 2008 22:18:02 +0000 (+0200) Subject: mouseReleaseEvent was not correctly dispatched under certain circumstance X-Git-Tag: 1.0.0-pre1~2461 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=4cfee42d9807624eb37a24d7229f48793f7bfd6b;p=vlc mouseReleaseEvent was not correctly dispatched under certain circumstance Signed-off-by: Jean-Baptiste Kempf --- diff --git a/modules/gui/qt4/util/customwidgets.hpp b/modules/gui/qt4/util/customwidgets.hpp index 5f2279cd8f..24bc32436d 100644 --- a/modules/gui/qt4/util/customwidgets.hpp +++ b/modules/gui/qt4/util/customwidgets.hpp @@ -82,6 +82,7 @@ public: emit rightClicked( indexAt( QPoint( e->x(), e->y() ) ), QCursor::pos() ); } + QTreeView::mouseReleaseEvent( e ); } signals: void rightClicked( QModelIndex, QPoint );