diff options
author | Jairo Correa <jn.j41r0@gmail.com> | 2022-10-11 05:22:46 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-11 06:32:03 +0000 |
commit | 8b7d3f1bef47bbe048f644ed0d8dd3ad46554045 (patch) | |
tree | c6a15d0962efd4418bd8a68a341becc01e7f3731 /modules/ui.py | |
parent | 42bf5fa3256bff5e4640e5a626e750d4e49e01e1 (diff) | |
download | stable-diffusion-webui-gfx803-8b7d3f1bef47bbe048f644ed0d8dd3ad46554045.tar.gz stable-diffusion-webui-gfx803-8b7d3f1bef47bbe048f644ed0d8dd3ad46554045.tar.bz2 stable-diffusion-webui-gfx803-8b7d3f1bef47bbe048f644ed0d8dd3ad46554045.zip |
Make the ctrl+enter shortcut use the generate button on the current tab
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index e8039d76..cafda884 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1331,7 +1331,7 @@ Requested path was: {f} with gr.Tabs() as tabs:
for interface, label, ifid in interfaces:
- with gr.TabItem(label, id=ifid):
+ with gr.TabItem(label, id=ifid, elem_id='tab_' + ifid):
interface.render()
if os.path.exists(os.path.join(script_path, "notification.mp3")):
|