mirror of
https://github.com/1j01/textual-paint.git
synced 2024-11-28 01:34:42 +03:00
Make radio buttons rounder in --ascii-only mode
This commit is contained in:
parent
ec988c2b4c
commit
751c4f2bbd
@ -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`.
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user