Skip to content

Commit 526bdeb

Browse files
authored
Merge pull request #6203 from Textualize/fix-redraw
add refresh
2 parents 6cd891d + 65dd84a commit 526bdeb

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ 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-
## [6.5.1] - Unreleased
8+
## [6.5.0] - 2025-10-31
99

1010
### Added
1111

1212
- Added `DOMNode.trap_focus` https://github.com/Textualize/textual/pull/6202
1313

14+
### Fixed
15+
16+
- Fixed issue with focus + scroll https://github.com/Textualize/textual/pull/6203
17+
1418
## [6.4.0] - 2025-10-22
1519

1620
### Fixed
@@ -3167,6 +3171,7 @@ https://textual.textualize.io/blog/2022/11/08/version-040/#version-040
31673171
- New handler system for messages that doesn't require inheritance
31683172
- Improved traceback handling
31693173

3174+
[6.5.0]: https://github.com/Textualize/textual/compare/v6.4.0...v6.5.0
31703175
[6.4.0]: https://github.com/Textualize/textual/compare/v6.3.0...v6.4.0
31713176
[6.3.0]: https://github.com/Textualize/textual/compare/v6.2.1...v6.3.0
31723177
[6.2.1]: https://github.com/Textualize/textual/compare/v6.2.0...v6.2.1

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 = "6.4.0"
3+
version = "6.5.0"
44
homepage = "https://github.com/Textualize/textual"
55
repository = "https://github.com/Textualize/textual"
66
documentation = "https://textual.textualize.io/"

src/textual/widget.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4460,6 +4460,7 @@ def set_focus(widget: Widget) -> None:
44604460
except NoScreen:
44614461
pass
44624462

4463+
self.refresh()
44634464
self.app.call_later(set_focus, self)
44644465
return self
44654466

0 commit comments

Comments
 (0)