summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorEWouters <6179932+EWouters@users.noreply.github.com>2022-05-06 15:06:17 +0200
committerLinus Groh <mail@linusgroh.de>2022-05-08 16:38:19 +0200
commit053fc51b7de5c7518502bdb073195b730a5b3755 (patch)
tree00f6b5e4c43549078b7d57eddc1d4dce26646b73 /Userland
parent86d5e5a90cfa691f76cc5b76c0f2b07ca5cf8c3d (diff)
downloadserenity-053fc51b7de5c7518502bdb073195b730a5b3755.zip
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
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Demos/Mandelbrot/Mandelbrot.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Demos/Mandelbrot/Mandelbrot.cpp b/Userland/Demos/Mandelbrot/Mandelbrot.cpp
index 9f2ed3099e..932d530dd0 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<int> serenity_main(Main::Arguments arguments)