aboutsummaryrefslogtreecommitdiff
path: root/modules/ui.py
diff options
context:
space:
mode:
authorHanusz Leszek <leszek.hanusz@gmail.com>2022-10-02 21:08:23 +0200
committerAUTOMATIC1111 <16777216c@gmail.com>2022-10-03 07:59:13 +0300
commite615d4f9d101e2712c7c2d0e3e8feb19cb430c74 (patch)
tree5f8af055950519e3d038d2cb12e596e95efa1d21 /modules/ui.py
parent2cd6a00f3757e3ba9528c1a54341c61b4ab45a7c (diff)
Convert folder icon surrogate pair to valid utf8
Diffstat (limited to 'modules/ui.py')
-rw-r--r--modules/ui.py2
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>"