Make radio buttons rounder in --ascii-only mode

This commit is contained in:
Isaiah Odhner 2023-09-05 22:15:23 -04:00
parent ec988c2b4c
commit 751c4f2bbd
2 changed files with 6 additions and 2 deletions

View File

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Changed
- Made radio buttons rounder in `--ascii-only` mode, using parentheses instead of square brackets.
## [0.2.0] - 2023-09-05
I am now recommending to install using `pipx` instead of `pip`.

View File

@ -5252,8 +5252,8 @@ if args.ascii_only:
RadioButton.BUTTON_INNER = "*" # "*", "o", "O", "@"
# Defined on internal superclass ToggleButton
RadioButton.BUTTON_LEFT = "["
RadioButton.BUTTON_RIGHT = "]"
RadioButton.BUTTON_LEFT = "("
RadioButton.BUTTON_RIGHT = ")"
ScrollBar.renderer = ASCIIScrollBarRender