Skip to content

Commit

Permalink
[visionOS] Inline audio controls missing overflow button
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=273855
rdar://125938049

Reviewed by Eric Carlson.

* Source/WebCore/Modules/modern-media-controls/controls/vision-media-controls.js:
(VisionMediaControls.prototype._bottomBarRightContainerButtons):

Canonical link: https://commits.webkit.org/279087@main
  • Loading branch information
jernoble committed May 22, 2024
1 parent d813f35 commit 5bc1cf6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class VisionMediaControls extends MediaControls
_bottomBarRightContainerButtons()
{
if (this._shouldUseAudioLayout || this._shouldUseSingleBarLayout)
return [this.muteButton];
return [this.muteButton, this.overflowButton];
return [this.overflowButton];
}
}
Expand Down

0 comments on commit 5bc1cf6

Please sign in to comment.