From 51fb62b36b54447f80235c7d4302b89d964cb79b Mon Sep 17 00:00:00 2001 From: Zaloog Date: Fri, 9 Aug 2024 20:59:43 +0200 Subject: [PATCH] update changelog and typo in test description --- CHANGELOG.md | 2 ++ tests/test_tooltips.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45262df67..9c4a7605a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased + ### Added - Added `tooltip` to Binding https://github.com/Textualize/textual/pull/4859 +- Added `TOOLTIP_DELAY` to App to customize time until a tooltip is displayed ## [0.76.0] diff --git a/tests/test_tooltips.py b/tests/test_tooltips.py index e81028832..5e78a2f30 100644 --- a/tests/test_tooltips.py +++ b/tests/test_tooltips.py @@ -28,7 +28,7 @@ class TooltipApp(App[None]): TOOLTIP_TIMEOUT: Final[float] = 0.4 + 0.1 """How long to wait for a tooltip to appear. -The 0.4 is the defined value defined with TOOLTIP_DELAY, and the 0.1 is a bit of +The 0.4 is the value defined with TOOLTIP_DELAY, and the 0.1 is a bit of wiggle room. """