mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
commit
8af9d0905f
|
@ -59,7 +59,7 @@ ContentDialog::ContentDialog(const Core &core, QWidget* parent)
|
|||
, videoSurfaceSize(QSize())
|
||||
, videoCount(0)
|
||||
{
|
||||
const Settings& s = Settings::getInstance();
|
||||
const Settings& s = Settings::getInstance();
|
||||
|
||||
friendLayout->setMargin(0);
|
||||
friendLayout->setSpacing(0);
|
||||
|
@ -383,7 +383,7 @@ void ContentDialog::updateTitleAndStatusIcon()
|
|||
return;
|
||||
}
|
||||
|
||||
setWindowTitle(activeChatroomWidget->getTitle() + QStringLiteral(" - ") + username);
|
||||
setWindowTitle(username + QStringLiteral(" - ") + activeChatroomWidget->getTitle());
|
||||
|
||||
bool isGroupchat = activeChatroomWidget->getGroup() != nullptr;
|
||||
if (isGroupchat) {
|
||||
|
|
|
@ -224,7 +224,7 @@ void GUI::_setWindowTitle(const QString& title)
|
|||
if (title.isEmpty())
|
||||
w->setWindowTitle("qTox");
|
||||
else
|
||||
w->setWindowTitle("qTox - " + title);
|
||||
w->setWindowTitle(title + " - qTox");
|
||||
}
|
||||
|
||||
void GUI::_showInfo(const QString& title, const QString& msg)
|
||||
|
|
|
@ -829,8 +829,8 @@ void Widget::setWindowTitle(const QString& title)
|
|||
} else {
|
||||
QString tmp = title;
|
||||
/// <[^>]*> Regexp to remove HTML tags, in case someone used them in title
|
||||
QMainWindow::setWindowTitle(QApplication::applicationName() + QStringLiteral(" - ")
|
||||
+ tmp.remove(QRegExp("<[^>]*>")));
|
||||
QMainWindow::setWindowTitle(tmp.remove(QRegExp("<[^>]*>")) + QStringLiteral(" - ")
|
||||
+ QApplication::applicationName());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user