1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:18:11 +00: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
10 changed files with 10 additions and 10 deletions

View file

@ -86,7 +86,7 @@ int main(int argc, char** argv)
remote_process.on_update = [&] {
if (!remote_process.process_name().is_null())
window->set_title(String::format("Inspector: %s (%d)", remote_process.process_name().characters(), remote_process.pid()));
window->set_title(String::format("%s (%d) - Inspector", remote_process.process_name().characters(), remote_process.pid()));
};
auto& tree_view = splitter.add<GUI::TreeView>();