unpause when leaving the channelview

This commit is contained in:
fourtf 2018-11-03 22:02:52 +01:00
parent 6416bf3927
commit d3003c171a

View file

@ -970,11 +970,12 @@ void ChannelView::wheelEvent(QWheelEvent *event)
void ChannelView::enterEvent(QEvent *) void ChannelView::enterEvent(QEvent *)
{ {
// this->pause(PAUSE_TIME);
} }
void ChannelView::leaveEvent(QEvent *) void ChannelView::leaveEvent(QEvent *)
{ {
this->unpause(PauseReason::Mouse);
this->queueLayout(); this->queueLayout();
} }