mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 18:23:22 +02:00
Removed session UUID from interface title bar
This commit is contained in:
parent
eb991b60ce
commit
ab0e854336
1 changed files with 2 additions and 2 deletions
|
@ -3132,8 +3132,8 @@ void Application::updateWindowTitle(){
|
|||
NodeList* nodeList = NodeList::getInstance();
|
||||
|
||||
QString username = AccountManager::getInstance().getAccountInfo().getUsername();
|
||||
QString title = QString() + (!username.isEmpty() ? username + " " : QString()) + nodeList->getSessionUUID().toString()
|
||||
+ " @ " + nodeList->getDomainHandler().getHostname() + buildVersion;
|
||||
QString title = QString() + (!username.isEmpty() ? username + " @ " : QString())
|
||||
+ nodeList->getDomainHandler().getHostname() + buildVersion;
|
||||
qDebug("Application title set to: %s", title.toStdString().c_str());
|
||||
_window->setWindowTitle(title);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue