ThemeEditor: Set window icon and title

This commit is contained in:
Andreas Kling 2020-08-21 21:04:42 +02:00
commit 84a272ad2a
Notes: sideshowbarker 2024-07-19 03:20:27 +09:00

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