You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
19
19
- Added `Select.type_to_search` which allows you to type to move the cursor to a matching option https://github.com/Textualize/textual/pull/5403
20
20
- Updated `TextArea` and `Input` behavior when there is a selection and the user presses left or right https://github.com/Textualize/textual/pull/5400
21
21
- Added `from_app_focus` to `Focus` event to indicate if a widget is being focused because the app itself has regained focus or not https://github.com/Textualize/textual/pull/5379
22
+
- Added `Blurred` message to `Input` widget (matching `Submitted` and `Changed`) to make it easier to synchronize with `validate_on` parameter when set to 'blur'.
@@ -33,6 +34,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
33
34
34
35
### Fixed
35
36
37
+
- The content of an `Input` will now only be automatically selected when the widget is focused by the user, not when the app itself has regained focus (similar to web browsers). https://github.com/Textualize/textual/pull/5379
38
+
- Updated `TextArea` and `Input` behavior when there is a selection and the user presses left or right https://github.com/Textualize/textual/pull/5400
39
+
- Footer can now be scrolled horizontally without holding `shift`https://github.com/Textualize/textual/pull/5404
40
+
- Modified _on_blur method in `Input` to post a `Blurred` message
36
41
- Fixed `Pilot.click` not working with `times` parameter https://github.com/Textualize/textual/pull/5398
37
42
- Fixed select refocusing itself too late https://github.com/Textualize/textual/pull/5420
38
43
- Fixed Log widget not refreshing on resize https://github.com/Textualize/textual/pull/5460
0 commit comments