Merge pull request #958 from davep/toll-free

Review the use of the bell in various examples and documentation files
This commit is contained in:
Dave Pearson
2022-10-19 15:56:21 +01:00
committed by GitHub
14 changed files with 5 additions and 55 deletions

View File

@@ -12,7 +12,7 @@ Action methods are methods on your app or widgets prefixed with `action_`. Aside
Let's write an app with a simple action.
```python title="actions01.py" hl_lines="6-8 12"
```python title="actions01.py" hl_lines="6-7 11"
--8<-- "docs/examples/guide/actions/actions01.py"
```
@@ -22,7 +22,7 @@ Although it is possible (and occasionally useful) to call action methods in this
The following example replaces the immediate call with a call to [action()][textual.widgets.Widget.action] which parses an action string and dispatches it to the appropriate method.
```python title="actions02.py" hl_lines="10-12"
```python title="actions02.py" hl_lines="9-11"
--8<-- "docs/examples/guide/actions/actions02.py"
```
@@ -71,7 +71,7 @@ The following example mounts simple static text with embedded action links.
```{.textual path="docs/examples/guide/actions/actions03.py"}
```
When you click any of the links, Textual runs the `"set_background"` action to change the background to the given color and plays the terminal's bell.
When you click any of the links, Textual runs the `"set_background"` action to change the background to the given color.
## Bindings

View File

@@ -46,7 +46,7 @@ Textual offers a convenient way of handling specific keys. If you create a metho
Let's add a key method to the example code.
```python title="key02.py" hl_lines="15-16"
--8<-- "docs/examples/guide/input/key01.py"
--8<-- "docs/examples/guide/input/key02.py"
```
Note the addition of a `key_space` method which is called in response to the space key, and plays the terminal bell noise.