From 3bfe21468276eefeb65ffa0e27f24fb1113a0c96 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Thu, 18 Jun 2020 23:45:23 +0200 Subject: [PATCH] Added thin space and thin non-breaking space to unicode class --- nw/constants/constants.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nw/constants/constants.py b/nw/constants/constants.py index b05f8e6d..90e49dfe 100644 --- a/nw/constants/constants.py +++ b/nw/constants/constants.py @@ -231,6 +231,8 @@ class nwUnicode: ## Other U_NBSP = "\u00a0" # Non-breaking space + U_THNSP = "\u2009" # Thin space + U_THNBSP = "\u202f" # Thin non-breaking space U_CHECK = "\u2714" # Heavy check mark U_MULT = "\u2715" # Multiplication x @@ -275,6 +277,8 @@ class nwUnicode: ## Other H_NBSP = " " + H_THNSP = " " + H_THNBSP = " " H_CHECK = "✔" H_MULT = "✕"