From 268b063c00d8c866b8e0790268fc0ef36ead405d Mon Sep 17 00:00:00 2001 From: Jacob Boerema Date: Mon, 29 Aug 2022 12:14:39 -0400 Subject: [PATCH] plug-ins: fix #8548 export to mng not working Due to a typo in the config property "default-delay", loading of that option and the ones after it, failed. Because of this, default-chunks had an invalid value, which made our export fail. After correcting the typo the export succeeds. --- plug-ins/common/file-mng.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug-ins/common/file-mng.c b/plug-ins/common/file-mng.c index acda506f8c..9e0cad76c9 100644 --- a/plug-ins/common/file-mng.c +++ b/plug-ins/common/file-mng.c @@ -815,7 +815,7 @@ mng_save_image (GFile *file, "jpeg-quality", &config_jpeg_quality, "jpeg-smoothing", &config_jpeg_smoothing, "loop", &config_loop, - "defaut-delay", &config_default_delay, + "default-delay", &config_default_delay, "default-chunks", &config_default_chunks, "default-dispose", &config_default_dispose, "bkgd", &config_bkgd,