diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-13 23:12:40 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-13 23:12:40 +0200 |
commit | 9197cfc62f41704847e9315998c5715ff157b092 (patch) | |
tree | b9f223a99524c2c2b6712fe91c824bea581e151a /Applications/Piano | |
parent | 3eeb0734baedb4ef61f78b8d18a81e67d3273b3a (diff) | |
download | serenity-9197cfc62f41704847e9315998c5715ff157b092.zip |
Piano: Add 16x16 window icon.
Diffstat (limited to 'Applications/Piano')
-rw-r--r-- | Applications/Piano/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Applications/Piano/main.cpp b/Applications/Piano/main.cpp index d453f3b5ad..0e25bb423e 100644 --- a/Applications/Piano/main.cpp +++ b/Applications/Piano/main.cpp @@ -25,6 +25,8 @@ int main(int argc, char** argv) window->show(); + window->set_icon_path("/res/icons/16x16/app-piano.png"); + CNotifier notifier(s_pipefds[0], CNotifier::Read); notifier.on_ready_to_read = [&] { char buffer[32]; |