Skip to content

Commit

Permalink
fixed unicode ranges, removed unusable character
Browse files Browse the repository at this point in the history
  • Loading branch information
Nokse22 committed May 14, 2024
1 parent fb4b9d9 commit a1a5053
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)]},
Expand Down

0 comments on commit a1a5053

Please sign in to comment.