Skip to content

Commit

Permalink
Fix #383 - add space between box and option
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbrittain committed Oct 27, 2023
1 parent f32ea41 commit a8c34d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asciimatics/widgets/checkbox.py
Expand Up @@ -34,7 +34,7 @@ def update(self, frame_no):
check_char = "✓" if self._frame.canvas.unicode_aware else "X"
(colour, attr, bg) = self._pick_colours("control", self._has_focus)
self._frame.canvas.print_at(
f"[{check_char if self._value else ' '}]",
f"[{check_char if self._value else ' '}] ",
self._x + self._offset,
self._y,
colour, attr, bg)
Expand Down

0 comments on commit a8c34d4

Please sign in to comment.