Cube: Add app-cube.png 16x16 icon

This commit is contained in:
Brendan Coles 2020-05-02 03:50:58 +00:00 committed by Andreas Kling
parent e861af2a5c
commit 6c1e842a7e
Notes: sideshowbarker 2024-07-19 07:06:50 +09:00
3 changed files with 4 additions and 1 deletions

View file

@ -2,3 +2,6 @@
Name=Cube
Executable=/bin/Cube
Category=Demos
[Icons]
16x16=/res/icons/16x16/app-cube.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 394 B

View file

@ -207,7 +207,7 @@ int main(int argc, char** argv)
cube.set_stat_label(time);
window->show();
window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/app-demo.png"));
window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/app-cube.png"));
return app.exec();
}