From e2b9e01c44b24e645cb008407ef68048c3eae3c8 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Mon, 4 May 2020 17:58:17 +0200 Subject: [PATCH] Replace the arrow unicodes with some more universal ones --- nw/constants/constants.py | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) 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