1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:47:34 +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

@ -25,6 +25,7 @@
*/
#include <LibGUI/Application.h>
#include <LibGUI/Icon.h>
#include <LibGUI/Painter.h>
#include <LibGUI/Widget.h>
#include <LibGUI/Window.h>
@ -203,7 +204,9 @@ int main(int argc, char** argv)
window->set_title("LibGfx Demo");
window->set_resizable(false);
window->resize(WIDTH, HEIGHT);
window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/app-libgfx-demo.png"));
auto app_icon = GUI::Icon::default_icon("app-libgfx-demo");
window->set_icon(app_icon.bitmap_for_size(16));
window->set_main_widget<Canvas>();
window->show();