diff --git a/apps/stable_diffusion/web/index.py b/apps/stable_diffusion/web/index.py index e25e6a4e1d..7cfcf3cc49 100644 --- a/apps/stable_diffusion/web/index.py +++ b/apps/stable_diffusion/web/index.py @@ -30,7 +30,11 @@ def launch_app(address): width = window.winfo_screenwidth() height = window.winfo_screenheight() webview.create_window( - "SHARK AI Studio", url=address, width=width, height=height + "SHARK AI Studio", + url=address, + width=width, + height=height, + text_select=True, ) webview.start(private_mode=False)