1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09:00

Applications: Use "Document - AppName" window title format

Fixes #1444
This commit is contained in:
Tibor Nagy 2020-03-13 23:21:35 +01:00 committed by Andreas Kling
parent b4381be0ba
commit f347dd5c5e
Notes: sideshowbarker 2024-07-19 08:19:17 +09:00
10 changed files with 10 additions and 10 deletions

View file

@ -72,7 +72,7 @@ IRCAppWindow::~IRCAppWindow()
void IRCAppWindow::update_title()
{
set_title(String::format("IRC Client: %s@%s:%d", m_client->nickname().characters(), m_client->hostname().characters(), m_client->port()));
set_title(String::format("%s@%s:%d - IRC Client", m_client->nickname().characters(), m_client->hostname().characters(), m_client->port()));
}
void IRCAppWindow::setup_client()