diff --git a/Base/res/apps/Cube.af b/Base/res/apps/Cube.af index dce41fe1d2..ef964269fc 100644 --- a/Base/res/apps/Cube.af +++ b/Base/res/apps/Cube.af @@ -2,3 +2,6 @@ Name=Cube Executable=/bin/Cube Category=Demos + +[Icons] +16x16=/res/icons/16x16/app-cube.png diff --git a/Base/res/icons/16x16/app-cube.png b/Base/res/icons/16x16/app-cube.png new file mode 100644 index 0000000000..8dcf2ec5a0 Binary files /dev/null and b/Base/res/icons/16x16/app-cube.png differ diff --git a/Demos/Cube/Cube.cpp b/Demos/Cube/Cube.cpp index 91afcaba7b..8cd78d1d12 100644 --- a/Demos/Cube/Cube.cpp +++ b/Demos/Cube/Cube.cpp @@ -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(); }