diff --git a/nw/constants/constants.py b/nw/constants/constants.py index fe327525..a9eb8a5b 100644 --- a/nw/constants/constants.py +++ b/nw/constants/constants.py @@ -237,10 +237,14 @@ class nwUnicode: U_MULT = "\u2715" # Multiplication x ## Arrows - U_UTRI = "\u2bc5" # Up-pointing triangle - U_DTRI = "\u2bc6" # Down-pointing triangle - U_LTRI = "\u2bc7" # Left-pointing triangle - U_RTRI = "\u2bc8" # Right-pointing triangle + U_UTRI = "\u25b2" # Up-pointing triangle + U_UTRIS = "\u25b4" # Up-pointing triangle, small + U_RTRI = "\u25b6" # Right-pointing triangle + U_RTRIS = "\u25b8" # Right-pointing triangle, small + U_DTRI = "\u25bc" # Down-pointing triangle + U_DTRIS = "\u25be" # Down-pointing triangle, small + U_LTRI = "\u25c0" # Left-pointing triangle + U_LTRIS = "\u25c2" # Left-pointing triangle, small # HTML Equivalents @@ -276,9 +280,13 @@ class nwUnicode: H_MULT = "✕" ## Arrows - H_UTRI = "⯅" - H_DTRI = "⯆" - H_LTRI = "⯇" - H_RTRI = "⯈" + H_UTRI = "▲" + H_UTRIS = "▴" + H_RTRI = "▶" + H_RTRIS = "▸" + H_DTRI = "▼" + H_DTRIS = "▾" + H_LTRI = "◀" + H_LTRIS = "◂" # END Class nwUnicode