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.
This commit is contained in:
parent
9ce27be989
commit
268b063c00
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue