fixed CIW not disappearing after being opened by ChatView

This commit is contained in:
Max-Wilhelm Bruker 2012-06-02 20:15:55 +02:00
parent 7157963204
commit 31967cab44

View file

@ -228,7 +228,7 @@ void ChatView::mousePressEvent(QMouseEvent *event)
void ChatView::mouseReleaseEvent(QMouseEvent *event)
{
if (hoveredItemType == HoveredCard && ((event->button() == Qt::MidButton) || (event->button() == Qt::LeftButton)))
if ((event->button() == Qt::MidButton) || (event->button() == Qt::LeftButton))
emit deleteCardInfoPopup(QString("_"));
QTextBrowser::mouseReleaseEvent(event);