1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:07:35 +00:00

ThemeEditor: Set window icon and title

This commit is contained in:
Andreas Kling 2020-08-21 21:04:42 +02:00
parent 7703dad36b
commit 84a272ad2a

View file

@ -82,5 +82,7 @@ int main(int argc, char** argv)
window->resize(500, 500);
window->show();
window->set_title("Theme Editor");
window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/themes.png"));
return app->exec();
}