Skip to content

Commit

Permalink
inline tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Apr 9, 2024
1 parent 762bc36 commit ddcf9a7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.56.4] - 2023-04-09

### Fixed

- Disabled terminal synchronization in inline mode as it breaks on some terminals

## [0.56.3] - 2024-04-08

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "textual"
version = "0.56.3"
version = "0.56.4"
homepage = "https://github.com/Textualize/textual"
repository = "https://github.com/Textualize/textual"
documentation = "https://textual.textualize.io/"
Expand Down
3 changes: 2 additions & 1 deletion src/textual/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3430,7 +3430,8 @@ def _on_terminal_supports_synchronized_output(
self, message: messages.TerminalSupportsSynchronizedOutput
) -> None:
log.system("SynchronizedOutput mode is supported")
self._sync_available = True
if self._driver is not None and not self._driver.is_inline:
self._sync_available = True

def _begin_update(self) -> None:
if self._sync_available and self._driver is not None:
Expand Down

0 comments on commit ddcf9a7

Please sign in to comment.