diff options
author | Hanusz Leszek <leszek.hanusz@gmail.com> | 2022-10-02 19:08:23 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-03 04:59:13 +0000 |
commit | e615d4f9d101e2712c7c2d0e3e8feb19cb430c74 (patch) | |
tree | 5f8af055950519e3d038d2cb12e596e95efa1d21 /modules/ui.py | |
parent | 2cd6a00f3757e3ba9528c1a54341c61b4ab45a7c (diff) | |
download | stable-diffusion-webui-gfx803-e615d4f9d101e2712c7c2d0e3e8feb19cb430c74.tar.gz stable-diffusion-webui-gfx803-e615d4f9d101e2712c7c2d0e3e8feb19cb430c74.tar.bz2 stable-diffusion-webui-gfx803-e615d4f9d101e2712c7c2d0e3e8feb19cb430c74.zip |
Convert folder icon surrogate pair to valid utf8
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 d9d02ece..16432151 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -69,7 +69,7 @@ random_symbol = '\U0001f3b2\ufe0f' # 🎲️ reuse_symbol = '\u267b\ufe0f' # ♻️
art_symbol = '\U0001f3a8' # 🎨
paste_symbol = '\u2199\ufe0f' # ↙
-folder_symbol = '\uD83D\uDCC2'
+folder_symbol = '\U0001f4c2' # 📂
def plaintext_to_html(text):
text = "<p>" + "<br>\n".join([f"{html.escape(x)}" for x in text.split('\n')]) + "</p>"
|