Skip to content

Commit ddcf9a7

Browse files
committed
inline tweak
1 parent 762bc36 commit ddcf9a7

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [0.56.4] - 2023-04-09
9+
10+
### Fixed
11+
12+
- Disabled terminal synchronization in inline mode as it breaks on some terminals
13+
814
## [0.56.3] - 2024-04-08
915

1016
### Fixed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "textual"
3-
version = "0.56.3"
3+
version = "0.56.4"
44
homepage = "https://github.com/Textualize/textual"
55
repository = "https://github.com/Textualize/textual"
66
documentation = "https://textual.textualize.io/"

src/textual/app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3430,7 +3430,8 @@ def _on_terminal_supports_synchronized_output(
34303430
self, message: messages.TerminalSupportsSynchronizedOutput
34313431
) -> None:
34323432
log.system("SynchronizedOutput mode is supported")
3433-
self._sync_available = True
3433+
if self._driver is not None and not self._driver.is_inline:
3434+
self._sync_available = True
34343435

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

0 commit comments

Comments
 (0)