@@ -88,7 +88,7 @@ parser.add_argument("--gradio-img2img-tool", type=str, help='does not do anythin
parser.add_argument("--gradio-inpaint-tool",type=str,help="does not do anything")
parser.add_argument("--gradio-allowed-path",action='append',help="add path to gradio's allowed_paths, make it possible to serve files from it",default=[data_path])
parser.add_argument("--opt-channelslast",action='store_true',help="change memory type for stable diffusion to channels last")
parser.add_argument("--styles-file",type=str,help="filename to use for styles",default=os.path.join(data_path,'styles.csv'))
parser.add_argument("--styles-file",type=str,action='append',help="path or wildcard path of styles files, allow multiple entries.",default=[])
parser.add_argument("--autolaunch",action='store_true',help="open the webui URL in the system's default browser upon launch",default=False)
parser.add_argument("--theme",type=str,help="launches the UI with light or dark theme",default=None)
parser.add_argument("--use-textbox-seed",action='store_true',help="use textbox for seeds in UI (no up/down, but possible to input long seeds)",default=False)