Skip to content

Commit

Permalink
exclusive false (#2470)
Browse files Browse the repository at this point in the history
* exclusive false

* changelog
  • Loading branch information
willmcgugan authored May 4, 2023
1 parent cbd68b2 commit 04083a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Changed

- The DataTable cursor is now scrolled into view when the cursor coordinate is changed programmatically https://github.com/Textualize/textual/issues/2459
- run_worker exclusive parameter is now `False` by default https://github.com/Textualize/textual/pull/2470

## [0.23.0] - 2023-05-03

Expand Down
2 changes: 1 addition & 1 deletion src/textual/dom.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def run_worker(
description: str = "",
exit_on_error: bool = True,
start: bool = True,
exclusive: bool = True,
exclusive: bool = False,
) -> Worker[ResultType]:
"""Run work in a worker.
Expand Down

0 comments on commit 04083a7

Please sign in to comment.