Skip to content

Commit

Permalink
Merge pull request #4805 from dmitrylyzo/slider-force-change
Browse files Browse the repository at this point in the history
  • Loading branch information
thornbill authored Sep 27, 2023
2 parents 7f5e6c7 + 9024ebe commit 6f4a2b8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/elements/emby-slider/emby-slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,13 @@ function onKeyDown(e) {
e.preventDefault();
e.stopPropagation();
break;
case 'Enter':
if (this.keyboardDragging) {
finishKeyboardDragging(this);
e.preventDefault();
e.stopPropagation();
}
break;
}
}

Expand Down

0 comments on commit 6f4a2b8

Please sign in to comment.