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

Add missing comment for #1367

This commit is contained in:
Zetok Zalbavar 2015-03-14 08:12:42 +00:00
parent b6175ac96f
commit 9ed4b3fb7d
No known key found for this signature in database
GPG Key ID: C953D3880212068A

View File

@ -69,6 +69,12 @@ void GroupWidget::contextMenuEvent(QContextMenuEvent * event)
if (ok && alias != nameLabel->fullText())
emit g->getChatForm()->groupTitleChanged(groupId, alias.left(128));
/* according to agilob:
* Moving mouse pointer over groupwidget results in CSS effect
* mouse-over(?). Changing group title repaints only changed
* element - title, the rest of the widget stays in the same CSS as it
* was on mouse over. Repainting whole widget fixes style problem.
*/
this->repaint();
}
}