Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Fixed
- `seekbar` not resetting seek position when losing focus on certain TVs

## [3.73.0] - 2024-09-06

### Added
Expand Down
4 changes: 2 additions & 2 deletions src/ts/components/seekbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -780,8 +780,8 @@ export class SeekBar extends Component<SeekBarConfig> {
}
});

// Hide seek target indicator when mouse or finger leaves seekbar
seekBar.on('touchend mouseleave', (e: MouseEvent | TouchEvent) => {
// Hide seek target indicator when mouse or finger leaves seekbar or seekbar loses focus
seekBar.on('touchend mouseleave blur', (e: MouseEvent | TouchEvent) => {
e.preventDefault();

this.setSeekPosition(0);
Expand Down