mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-30 09:36:43 +00:00
fixed mouse button release detection
This commit is contained in:
parent
e33bd4d508
commit
644f5cb8de
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ namespace CSVRender
|
||||||
|
|
||||||
void SceneWidget::mouseReleaseEvent (QMouseEvent *event)
|
void SceneWidget::mouseReleaseEvent (QMouseEvent *event)
|
||||||
{
|
{
|
||||||
if (event->buttons() & Qt::LeftButton)
|
if (!(event->buttons() & Qt::LeftButton))
|
||||||
mDragging = false;
|
mDragging = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue