1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:48:11 +00:00

Calculator: Add a 16x16 app icon

This commit is contained in:
Andreas Kling 2019-11-29 21:04:05 +01:00
parent e56daf547c
commit f99e554c5e
3 changed files with 2 additions and 1 deletions

View file

@ -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();
}