1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:57:45 +00:00

Demos: Use GUI::Icon::default_icon to set application icon

This commit is contained in:
Brendan Coles 2020-10-31 21:23:42 +00:00 committed by Andreas Kling
parent 3482b9b937
commit 27ead7e2c2
7 changed files with 29 additions and 9 deletions

View file

@ -44,6 +44,7 @@
#include <LibCore/ElapsedTimer.h>
#include <LibGUI/Application.h>
#include <LibGUI/Icon.h>
#include <LibGUI/Label.h>
#include <LibGUI/Painter.h>
#include <LibGUI/Widget.h>
@ -229,7 +230,9 @@ int main(int argc, char** argv)
fire.set_stat_label(time);
window->show();
window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/app-fire.png"));
auto app_icon = GUI::Icon::default_icon("app-fire");
window->set_icon(app_icon.bitmap_for_size(16));
return app->exec();
}