Skip to content

Commit 2148966

Browse files
committed
escape processing
1 parent c7b357d commit 2148966

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99

1010
### [0.66.0]
1111

12+
### Changed
13+
1214
- `get_content_height` will now return 0 if the renderable is Falsey https://github.com/Textualize/textual/pull/4617
1315
- Buttons may not be pressed within their "active_effect_duration" to prevent inadvertent activations https://github.com/Textualize/textual/pull/4621
1416
- `Screen.dismiss` is now a noop if the screen isn't active. Previously it would raise a `ScreenStackError`, now it returns `False`. https://github.com/Textualize/textual/pull/4621
17+
- Increased window for escape processing to 100ms
1518

1619
### Added
1720

src/textual/drivers/linux_inline_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def run_input_thread(self) -> None:
127127
def more_data() -> bool:
128128
"""Check if there is more data to parse."""
129129

130-
for _key, events in selector.select(0.01):
130+
for _key, events in selector.select(0.1):
131131
if events & EVENT_READ:
132132
return True
133133
return False

0 commit comments

Comments
 (0)