Skip to content

Commit

Permalink
Fix highlight on scroll.. Mostly
Browse files Browse the repository at this point in the history
Closes #175
  • Loading branch information
bcomnes committed Jun 17, 2017
1 parent e2a00f6 commit b05f01f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions renderer/elements/table/rows.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ TableRows.prototype._rowMap = function (key, idx) {
var meta = this._trackDict[key]
// Generate state based styles
var classes = {}
classes[styles.playing] = this._currentIndex === idx
classes[styles.selected] = this._selectedIndex === idx
classes[styles.playing] = this._currentIndex === idx + this._sliceStartIndex
classes[styles.selected] = this._selectedIndex === idx + this._sliceStartIndex

return html`
<tr style=""
Expand Down

0 comments on commit b05f01f

Please sign in to comment.