Commit 91c1e1e6 authored by w-e-w's avatar w-e-w Committed by AUTOMATIC1111
Browse files

fix default filename pattern

parent faed465a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -477,8 +477,10 @@ def save_image(image, path, basename, seed=None, prompt=None, extension='png', i
    if forced_filename is None:
        if short_filename or seed is None:
            file_decoration = ""
        else:
        elif opts.save_to_dirs:
            file_decoration = opts.samples_filename_pattern or "[seed]"
        else:
            file_decoration = opts.samples_filename_pattern or "[seed]-[prompt_spaces]"

        add_number = opts.save_images_add_number or file_decoration == ''