Skip to content

Commit

Permalink
Merge pull request #4813 from dmitrylyzo/backport/slider-force-change
Browse files Browse the repository at this point in the history
  • Loading branch information
thornbill authored Sep 29, 2023
2 parents 1ba6bde + 3c80bf7 commit 1250c76
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 @@ -408,6 +408,13 @@ import '../emby-input/emby-input';
e.preventDefault();
e.stopPropagation();
break;
case 'Enter':
if (this.keyboardDragging) {
finishKeyboardDragging(this);
e.preventDefault();
e.stopPropagation();
}
break;
}
}

Expand Down

0 comments on commit 1250c76

Please sign in to comment.