From 45d94dafff1a2e2243138b4cfbaa658f4ff43316 Mon Sep 17 00:00:00 2001 From: Samuel <33796679+hollowstrawberry@users.noreply.github.com> Date: Tue, 5 Dec 2023 04:08:39 -0300 Subject: [PATCH] copy new info --- png_info_editor.pyw | 1 + 1 file changed, 1 insertion(+) diff --git a/png_info_editor.pyw b/png_info_editor.pyw index b53a58b..2815fbe 100644 --- a/png_info_editor.pyw +++ b/png_info_editor.pyw @@ -47,6 +47,7 @@ def copy_png_info(): pnginfo = PngImagePlugin.PngInfo() for key, val in params.items(): pnginfo.add_text(key, val) + pnginfo.add_text("Description", info) target.save(target_file, format="png", pnginfo=pnginfo) messagebox.showinfo(title="Success", message=f"NovelAI3 data copied to {target_file.split('/')[-1]}")