From a1a5053edb415627bcd6bb7939c6be06cbc1e2f0 Mon Sep 17 00:00:00 2001 From: Nokse22 <44558032+Nokse22@users.noreply.github.com> Date: Tue, 14 May 2024 21:04:45 +0200 Subject: [PATCH] fixed unicode ranges, removed unusable character --- src/window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/window.py b/src/window.py index 747ab46..fb9df0d 100644 --- a/src/window.py +++ b/src/window.py @@ -208,8 +208,8 @@ def __init__(self, **kwargs): self.lines_styles_box.get_first_child().set_active(True) default_palettes_ranges = [ - {"name" : "ASCII", "ranges" : [(0x0020, 0x007E)]}, - {"name" : "Extended ASCII", "ranges" : [(0x00A1, 0x0100), (0x0100, 0x0180)]}, + {"name" : "ASCII", "ranges" : [(0x0020, 0x007F)]}, + {"name" : "Extended ASCII", "ranges" : [(0x00A1, 0x00AD), (0x00AE, 0x0180), (0x0100, 0x0180)]}, {"name" : "Box Drawing", "ranges" : [(0x2500, 0x2580)]}, {"name" : "Block Elements", "ranges" : [(0x2580, 0x25A0)]}, {"name" : "Geometric Shapes", "ranges" : [(0x25A0, 0x25FC), (0x25FF, 0x2600)]},