Fix vertical piano mouse click unresponsiveness

`PianoRoll::mouseDoubleClickEvent` wasn't forwarding the event to the base class when not acting on the event. The base class calls `mousePressEvent`.

Fixes #3005
This commit is contained in:
Kevin Zander
2019-11-01 02:36:54 -05:00
committed by Lukas W
parent 08c7e8e8dd
commit a8d91b10e8

View File

@@ -1796,6 +1796,10 @@ void PianoRoll::mouseDoubleClickEvent(QMouseEvent * me )
enterValue( &nv );
}
}
else
{
QWidget::mouseDoubleClickEvent(me);
}
}