--Bug fixes -Error when saving screen on macOS at first time.

This commit is contained in:
Michel Mastriani 2023-07-24 21:28:36 -03:00
parent 7ea9c06d66
commit 9b50d065d9

View File

@ -86,7 +86,11 @@ void FractoriumSettings::EnsureDefaults()
OpenImageExt("*.png");
if (SaveImageExt() == "")
SaveImageExt(".png");
#ifndef __APPLE__
SaveImageExt(".png");
#else
SaveImageExt("Png (*.png)");
#endif
if (FinalExt() != "jpg" && FinalExt() != "png" && FinalExt() != "exr"
#ifdef _WIN32