Skip to content

Commit

Permalink
Fix not to show repeat button when its mode is NONE.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 330627047
  • Loading branch information
1nsun authored and ojw28 committed Sep 9, 2020
1 parent 49699d3 commit 61b253b
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -716,6 +716,8 @@ public StyledPlayerControlView(
controlViewLayoutManager.setShowButton(shuffleButton, showShuffleButton);
controlViewLayoutManager.setShowButton(subtitleButton, showSubtitleButton);
controlViewLayoutManager.setShowButton(vrButton, showVrButton);
controlViewLayoutManager.setShowButton(
repeatToggleButton, repeatToggleModes != RepeatModeUtil.REPEAT_TOGGLE_MODE_NONE);
addOnLayoutChangeListener(this::onLayoutChange);
}

Expand Down

0 comments on commit 61b253b

Please sign in to comment.