diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-16 17:55:27 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-16 17:55:27 +0200 |
commit | 29abfc86233fb32a14bf0bfcd480c4eb2b0551c7 (patch) | |
tree | 9b89a8905390b8daeb9430aed6cc8880e021aeb9 /Applications/ProcessManager | |
parent | 86361d3d453491b4c9c89d11c5e0c02146d580e3 (diff) | |
download | serenity-29abfc86233fb32a14bf0bfcd480c4eb2b0551c7.zip |
ProcessManager: Add a window icon.
Diffstat (limited to 'Applications/ProcessManager')
-rw-r--r-- | Applications/ProcessManager/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Applications/ProcessManager/main.cpp b/Applications/ProcessManager/main.cpp index 6a350f9a52..ba15049662 100644 --- a/Applications/ProcessManager/main.cpp +++ b/Applications/ProcessManager/main.cpp @@ -74,5 +74,7 @@ int main(int argc, char** argv) window->set_should_exit_event_loop_on_close(true); window->show(); + window->set_icon_path("/res/icons/16x16/app-process-manager.png"); + return app.exec(); } |