Skip to content

Commit 8670846

Browse files
committed
Merge pull request #12819 from catboxanon/fix/rng-infotext
Add missing infotext for RNG in options
1 parent bfc5c08 commit 8670846

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/shared_options.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
"comma_padding_backtrack": OptionInfo(20, "Prompt word wrap length limit", gr.Slider, {"minimum": 0, "maximum": 74, "step": 1}).info("in tokens - for texts shorter than specified, if they don't fit into 75 token limit, move them to the next 75 token chunk"),
145145
"CLIP_stop_at_last_layers": OptionInfo(1, "Clip skip", gr.Slider, {"minimum": 1, "maximum": 12, "step": 1}, infotext="Clip skip").link("wiki", "https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#clip-skip").info("ignore last layers of CLIP network; 1 ignores none, 2 ignores one layer"),
146146
"upcast_attn": OptionInfo(False, "Upcast cross attention layer to float32"),
147-
"randn_source": OptionInfo("GPU", "Random number generator source.", gr.Radio, {"choices": ["GPU", "CPU", "NV"]}).info("changes seeds drastically; use CPU to produce the same picture across different videocard vendors; use NV to produce same picture as on NVidia videocards"),
147+
"randn_source": OptionInfo("GPU", "Random number generator source.", gr.Radio, {"choices": ["GPU", "CPU", "NV"]}, infotext="RNG").info("changes seeds drastically; use CPU to produce the same picture across different videocard vendors; use NV to produce same picture as on NVidia videocards"),
148148
"tiling": OptionInfo(False, "Tiling", infotext='Tiling').info("produce a tileable picture"),
149149
}))
150150

0 commit comments

Comments
 (0)