File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
66and 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
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " textual"
3- version = " 0.56.3 "
3+ version = " 0.56.4 "
44homepage = " https://github.com/Textualize/textual"
55repository = " https://github.com/Textualize/textual"
66documentation = " https://textual.textualize.io/"
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments