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 dac59a5fa0
commit ebf71003c7

View File

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