From 2d32add1a0070530151cf9be02f7f5d01a90c4f5 Mon Sep 17 00:00:00 2001 From: brknsoul Date: Mon, 29 Jan 2024 11:55:11 +1030 Subject: [PATCH] Update shared.py Changing Settings Category from "Control" to "Control Options" (tooltip conflict resolution) --- modules/shared.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/shared.py b/modules/shared.py index 3547abd6f..c5d777b59 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -633,7 +633,7 @@ options_templates.update(options_section(('postprocessing', "Postprocessing"), { "upscaler_tile_overlap": OptionInfo(8, "Upscaler tile overlap", gr.Slider, {"minimum": 0, "maximum": 64, "step": 1}), })) -options_templates.update(options_section(('control', "Control"), { +options_templates.update(options_section(('control', "Control Options"), { "control_max_units": OptionInfo(3, "Maximum number of units", gr.Slider, {"minimum": 1, "maximum": 10, "step": 1}), "control_move_processor": OptionInfo(False, "Processor move to CPU after use"), "control_unload_processor": OptionInfo(False, "Processor unload after use"),