Skip to content

Commit 5d27b56

Browse files
authored
fix(UI): Fix seek on the seekbar at the init (#8555)
1 parent 4ef126b commit 5d27b56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/range_element.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ shaka.ui.RangeElement = class extends shaka.ui.Element {
6565
this.bar.min = '0';
6666
this.bar.max = '1';
6767
this.bar.value = '0';
68-
this.bar.disabled = this.controls.isOpaque();
68+
this.bar.disabled = !this.controls.isOpaque();
6969

7070
this.container.appendChild(this.bar);
7171
this.parent.appendChild(this.container);

0 commit comments

Comments
 (0)