Skip to content

Commit ac39c2a

Browse files
[Release blocker] local tile switcher fix (#4447) (#4448)
* fix local tile switcher action * Change files
1 parent 8825325 commit ac39c2a

3 files changed

Lines changed: 20 additions & 2 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "patch",
3+
"area": "fix",
4+
"workstream": "Fix local camera switcher blockage with reactions overlay",
5+
"comment": "fix local tile switcher action",
6+
"packageName": "@azure/communication-react",
7+
"email": "94866715+dmceachernmsft@users.noreply.github.com",
8+
"dependentChangeType": "patch"
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "patch",
3+
"area": "fix",
4+
"workstream": "Fix local camera switcher blockage with reactions overlay",
5+
"comment": "fix local tile switcher action",
6+
"packageName": "@azure/communication-react",
7+
"email": "94866715+dmceachernmsft@users.noreply.github.com",
8+
"dependentChangeType": "patch"
9+
}

packages/react-components/src/components/MeetingReactionOverlay.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export const MeetingReactionOverlay = (props: MeetingReactionOverlayProps): JSX.
112112

113113
if (overlayMode === 'grid-tiles') {
114114
return (
115-
<div ref={videoTileRef} style={{ width: '100%', height: '100%' }}>
115+
<div ref={videoTileRef} style={{ width: '100%', height: '100%', pointerEvents: 'none' }}>
116116
<ParticipantVideoTileOverlay
117117
emojiSize={emojiSizePx}
118118
reaction={reaction}
@@ -122,7 +122,7 @@ export const MeetingReactionOverlay = (props: MeetingReactionOverlayProps): JSX.
122122
);
123123
} else if (props.overlayMode === 'screen-share' || props.overlayMode === 'content-share') {
124124
return (
125-
<div ref={videoTileRef} style={{ width: '100%', height: '100%' }}>
125+
<div ref={videoTileRef} style={{ width: '100%', height: '100%', pointerEvents: 'none' }}>
126126
<RemoteContentShareReactionOverlay
127127
hostDivHeight={divHeight}
128128
hostDivWidth={divWidth}

0 commit comments

Comments
 (0)