diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-29 21:04:05 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-29 21:04:19 +0100 |
commit | f99e554c5e86df96e0a96b5647b9fbabdf5acf7e (patch) | |
tree | 8b2cde44967d988ed186e066a2b94e5f3a0de765 /Applications | |
parent | e56daf547c120adfcdab1e1e8ea189a1f369bd0c (diff) | |
download | serenity-f99e554c5e86df96e0a96b5647b9fbabdf5acf7e.zip |
Calculator: Add a 16x16 app icon
Diffstat (limited to 'Applications')
-rw-r--r-- | Applications/Calculator/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Applications/Calculator/main.cpp b/Applications/Calculator/main.cpp index f0701b1ead..85dd112d86 100644 --- a/Applications/Calculator/main.cpp +++ b/Applications/Calculator/main.cpp @@ -15,5 +15,6 @@ int main(int argc, char** argv) window->set_main_widget(calc_widget); window->show(); + window->set_icon(GraphicsBitmap::load_from_file("/res/icons/16x16/app-calculator.png")); return app.exec(); } |