diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-06-03 06:05:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-03 06:05:22 +0000 |
commit | b1fd2aaa8b427fcad38a6fd42dc6466d2f5a4cf6 (patch) | |
tree | 13edcce09cea00bc0424def0aee7d059077bc77f /modules/ui.py | |
parent | 08109b9bc08c02a0d72b6019dbbda0e890fd74aa (diff) | |
parent | 9009e25cb1a7864127f6b2dc7329bd4178ad3a5d (diff) | |
download | stable-diffusion-webui-gfx803-b1fd2aaa8b427fcad38a6fd42dc6466d2f5a4cf6.tar.gz stable-diffusion-webui-gfx803-b1fd2aaa8b427fcad38a6fd42dc6466d2f5a4cf6.tar.bz2 stable-diffusion-webui-gfx803-b1fd2aaa8b427fcad38a6fd42dc6466d2f5a4cf6.zip |
Merge pull request #10943 from catboxanon/sort
Allow dynamically sorting extra networks in UI
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/ui.py b/modules/ui.py index b7459f08..988b2003 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -79,6 +79,7 @@ extra_networks_symbol = '\U0001F3B4' # 🎴 switch_values_symbol = '\U000021C5' # ⇅
restore_progress_symbol = '\U0001F300' # 🌀
detect_image_size_symbol = '\U0001F4D0' # 📐
+up_down_symbol = '\u2195\ufe0f' # ↕️
def plaintext_to_html(text):
|