Fix tooltips in chat not showing on ctrl hover.

This commit is contained in:
Cranken 2019-10-02 13:06:22 +02:00 committed by fourtf
parent b64e2e9b70
commit 252e2e8bae

View file

@ -1038,14 +1038,6 @@ void ChannelView::leaveEvent(QEvent *)
void ChannelView::mouseMoveEvent(QMouseEvent *event)
{
if (event->modifiers() & (Qt::AltModifier | Qt::ControlModifier))
{
this->unsetCursor();
event->ignore();
return;
}
/// Pause on hover
if (float pauseTime = getSettings()->pauseOnHoverDuration;
pauseTime > 0.001f)