diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-11-19 06:11:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-19 06:11:49 +0000 |
commit | fc83af443265d8938cf778143aefec1129d95c42 (patch) | |
tree | a08507550962f800b51999b73ab21fe52fa8ddb2 /modules/ui_prompt_styles.py | |
parent | 337bc4a2fba577d858dfa266860f08ba37ec3039 (diff) | |
parent | 7ff54005fee46ce188544db75c27de61ae279001 (diff) | |
download | stable-diffusion-webui-gfx803-fc83af443265d8938cf778143aefec1129d95c42.tar.gz stable-diffusion-webui-gfx803-fc83af443265d8938cf778143aefec1129d95c42.tar.bz2 stable-diffusion-webui-gfx803-fc83af443265d8938cf778143aefec1129d95c42.zip |
Merge pull request #13931 from AUTOMATIC1111/style-hotkeys
Enable prompt hotkeys in style editor
Diffstat (limited to 'modules/ui_prompt_styles.py')
-rw-r--r-- | modules/ui_prompt_styles.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ui_prompt_styles.py b/modules/ui_prompt_styles.py index 3bcf092f..0d74c23f 100644 --- a/modules/ui_prompt_styles.py +++ b/modules/ui_prompt_styles.py @@ -68,10 +68,10 @@ class UiPromptStyles: self.copy = ui_components.ToolButton(value=styles_copy_symbol, elem_id=f"{tabname}_style_copy", tooltip="Copy main UI prompt to style.")
with gr.Row():
- self.prompt = gr.Textbox(label="Prompt", show_label=True, elem_id=f"{tabname}_edit_style_prompt", lines=3)
+ self.prompt = gr.Textbox(label="Prompt", show_label=True, elem_id=f"{tabname}_edit_style_prompt", lines=3, elem_classes=["prompt"])
with gr.Row():
- self.neg_prompt = gr.Textbox(label="Negative prompt", show_label=True, elem_id=f"{tabname}_edit_style_neg_prompt", lines=3)
+ self.neg_prompt = gr.Textbox(label="Negative prompt", show_label=True, elem_id=f"{tabname}_edit_style_neg_prompt", lines=3, elem_classes=["prompt"])
with gr.Row():
self.save = gr.Button('Save', variant='primary', elem_id=f'{tabname}_edit_style_save', visible=False)
|