Procházet zdrojové kódy

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.
Mustafa Quraish před 3 roky
rodič
revize
1da081bf86
1 změnil soubory, kde provedl 1 přidání a 0 odebrání
  1. 1 0
      Userland/Demos/Mandelbrot/Mandelbrot.cpp

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