diff options
author | Tibor Nagy <xnagytibor@gmail.com> | 2020-03-13 23:21:35 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-13 23:30:12 +0100 |
commit | f347dd5c5e261fc8c77917508e47680dbd166be5 (patch) | |
tree | d057a96eed5a30c831e77629c3092fa2bbd730c3 /Applications/IRCClient | |
parent | b4381be0bad4d454e177f031be9ba552614cb5ae (diff) | |
download | serenity-f347dd5c5e261fc8c77917508e47680dbd166be5.zip |
Applications: Use "Document - AppName" window title format
Fixes #1444
Diffstat (limited to 'Applications/IRCClient')
-rw-r--r-- | Applications/IRCClient/IRCAppWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/IRCClient/IRCAppWindow.cpp b/Applications/IRCClient/IRCAppWindow.cpp index 376f2a7fd6..06efa9d60e 100644 --- a/Applications/IRCClient/IRCAppWindow.cpp +++ b/Applications/IRCClient/IRCAppWindow.cpp @@ -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() |