Skip to content

Commit cfbb318

Browse files
committed
fixed style selector preview bug, changed a style
1 parent 9079e27 commit cfbb318

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/window.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self, **kwargs):
7777
["═", "═", "║", "║", "╔", "╗", "╝","╚", "┼", "├", "┤", "┴","┬", "A", "V", ">", "<"],
7878
["-", "-", "|", "|", "+", "+", "+","+", "┼", "├", "┤", "┴","┬", "↑", "↓", "→", "←"],
7979
["_", "_", "│", "│", " ", " ", "│","│", "┼", "├", "┤", "┴","┬", "▲", "▼", "►", "◄"],
80-
["•", "•", ":", ":", "•", "•", "•","•", "┼", "├", "┤", "┴","┬", "▲", "▼", "", ""],
80+
["•", "•", "", "", "•", "•", "•","•", "┼", "├", "┤", "┴","┬", "▲", "▼", ">", "<"],
8181
["˜", "˜", "│", "│", "│", "│", " "," ", "┼", "├", "┤", "┴","┬", "▲", "▼", "►", "◄"],
8282
["═", "═", "│", "│", "╒", "╕", "╛","╘", "┼", "├", "┤", "┴","┬", "▲", "▼", "►", "◄"],
8383
["▄", "▀", "▐", "▌", " ", " ", " "," ", "┼", "├", "┤", "┴","┬", "▲", "▼", "►", "◄"],
@@ -141,9 +141,9 @@ def __init__(self, **kwargs):
141141
prev_btn = None
142142

143143
for style in self.styles:
144-
name = style[4] + style[0] + style[0] + style[0] + style[5] + " " + style[2] + " " + style[16] + style[1] + style[1] + style[5] + "\n"
145-
name += style[2] + " " + style[3] + " " + style[2] + " " + style[2] + "\n"
146-
name += style[7] + style[1] + style[1] + style[1] + style[6] + " " + style[7] + style[1] + style[1] + style[15] + " " + style[2]
144+
name = style[4] + style[0] + style[0] + style[0] + style[5] + " " + style[2] + " " + style[16] + style[0] + style[0] + style[5] + "\n"
145+
name += style[2] + " " + style[3] + " " + style[2] + " " + style[3] + "\n"
146+
name += style[7] + style[1] + style[1] + style[1] + style[6] + " " + style[7] + style[1] + style[1] + style[15] + " " + style[3]
147147
label = Gtk.Label(label = name)
148148
style_btn = Gtk.ToggleButton(css_classes=["flat", "ascii"])
149149
style_btn.set_child(label)

0 commit comments

Comments
 (0)