Merge pull request #163 from xenogenesi/fix-sceneviewer-rightbtn

non-windows: fake mouse right release event on contextMenuEvent
This commit is contained in:
kogaki 2016-04-13 14:19:52 +09:00
commit 9fbffc4177

View file

@ -957,13 +957,14 @@ using namespace ImageUtils;
void SceneViewer::contextMenuEvent(QContextMenuEvent *e)
{
#ifndef WIN32
/* On windows the widget receive the release event before the menu
is shown, on linux and osx the release event is lost, never
received by the widget */
QMouseEvent fakeRelease(QEvent::MouseButtonRelease, e->pos(),
Qt::RightButton, Qt::NoButton, Qt::NoModifier);
#ifdef MACOSX
//cleaning-up mousePressedEvent on MacOSX instead of mouseReleaseEvent called
m_mouseButton = Qt::NoButton;
m_tabletEvent = false;
m_pressure = 0;
m_buttonClicked = false;
QApplication::instance()->sendEvent(this, &fakeRelease);
#endif
if (m_freezedStatus != NO_FREEZED)