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

closes tux3/qtox #1289

This commit is contained in:
agilob 2015-02-26 21:08:32 +00:00
parent 6b2b92e445
commit ed1cd04340

View File

@ -470,7 +470,8 @@ void Widget::onStatusSet(Status status)
void Widget::setWindowTitle(const QString& title)
{
QMainWindow::setWindowTitle("qTox - " + title);
QString tmp = title;
QMainWindow::setWindowTitle("qTox - " + tmp.remove(QRegExp("<[^>]*>")));
}
void Widget::forceShow()