From 053fc51b7de5c7518502bdb073195b730a5b3755 Mon Sep 17 00:00:00 2001 From: EWouters <6179932+EWouters@users.noreply.github.com> Date: Fri, 6 May 2022 15:06:17 +0200 Subject: [PATCH] Mandelbrot: Remove image export confirmation dialog Andreas mentioned this dialog is not needed in the monthly update video[^1]. [^1]: https://youtu.be/yUmHEYs5n34?t=364 --- Userland/Demos/Mandelbrot/Mandelbrot.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Demos/Mandelbrot/Mandelbrot.cpp b/Userland/Demos/Mandelbrot/Mandelbrot.cpp index 9f2ed3099e7..932d530dd06 100644 --- a/Userland/Demos/Mandelbrot/Mandelbrot.cpp +++ b/Userland/Demos/Mandelbrot/Mandelbrot.cpp @@ -393,7 +393,6 @@ void Mandelbrot::export_image(String const& export_path, ImageType image_type) } fwrite(encoded_data.data(), 1, encoded_data.size(), file); fclose(file); - GUI::MessageBox::show(window(), "Image was successfully exported.", "Mandelbrot", GUI::MessageBox::Type::Information); } ErrorOr serenity_main(Main::Arguments arguments)