1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(chat window): prevent right click from opening chat window

Prevent a right click mouse release event from triggering a chat window
switch/launch.

Closes #3205
This commit is contained in:
initramfs 2016-04-27 01:38:03 +08:00
parent 5045c460d7
commit b9a392d59e
No known key found for this signature in database
GPG Key ID: 78B8BDF87E9EF0AF

View File

@ -181,9 +181,16 @@ void GenericChatroomWidget::reloadTheme()
setPalette(p);
}
void GenericChatroomWidget::mouseReleaseEvent(QMouseEvent*)
void GenericChatroomWidget::mouseReleaseEvent(QMouseEvent* event)
{
emit chatroomWidgetClicked(this);
if(event->button() == Qt::LeftButton)
{
emit chatroomWidgetClicked(this);
}
else
{
event->ignore();
}
}
void GenericChatroomWidget::enterEvent(QEvent*)