Commit 1fa777c1 authored by invincibledude's avatar invincibledude

Gen params paste improvement

parent 2aaee736
...@@ -256,6 +256,9 @@ Steps: 20, Sampler: Euler a, CFG scale: 7, Seed: 965400086, Size: 512x512, Model ...@@ -256,6 +256,9 @@ Steps: 20, Sampler: Euler a, CFG scale: 7, Seed: 965400086, Size: 512x512, Model
if line.startswith("Hires prompt:"): if line.startswith("Hires prompt:"):
res["Hires prompt"] = line[1:][:-1] res["Hires prompt"] = line[1:][:-1]
if line.startswith("Hires negative prompt:"):
res["Hires negative prompt"] = line[1:][:-1]
if done_with_prompt: if done_with_prompt:
negative_prompt += ("" if negative_prompt == "" else "\n") + line negative_prompt += ("" if negative_prompt == "" else "\n") + line
else: else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment