From 1da081bf86b50cc74d30fd58c215d9ba0e4ef4c9 Mon Sep 17 00:00:00 2001 From: Mustafa Quraish Date: Tue, 31 Aug 2021 22:30:51 -0400 Subject: [PATCH] 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. --- Userland/Demos/Mandelbrot/Mandelbrot.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Demos/Mandelbrot/Mandelbrot.cpp b/Userland/Demos/Mandelbrot/Mandelbrot.cpp index 68e51cccfa..ff98e615ab 100644 --- a/Userland/Demos/Mandelbrot/Mandelbrot.cpp +++ b/Userland/Demos/Mandelbrot/Mandelbrot.cpp @@ -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(); }