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

Mandelbrot: Use the new Zoom cursor

It makes it really clear now that you can use the mouse to zoom
when you see the zoom cursor.
This commit is contained in:
Mustafa Quraish 2021-08-31 22:30:51 -04:00 committed by Andreas Kling
parent 92df9d464a
commit 1da081bf86

View file

@ -436,6 +436,7 @@ int main(int argc, char** argv)
auto app_icon = GUI::Icon::default_icon("app-mandelbrot");
window->set_icon(app_icon.bitmap_for_size(16));
window->set_cursor(Gfx::StandardCursor::Zoom);
return app->exec();
}