-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#13480 🐛 solved the flip bug in screen share video #13542
#13480 🐛 solved the flip bug in screen share video #13542
Conversation
Hi, thanks for your contribution! |
@@ -497,7 +497,7 @@ export class VideoContainer extends LargeContainer { | |||
|
|||
const flipX = stream.isLocal() && this.localFlipX && !this.isScreenSharing(); | |||
|
|||
this.video.style.transform = flipX ? 'scaleX(-1)' : 'none'; | |||
this.video.style.transform = flipX && !this.isScreenSharing() ? 'scaleX(-1)' : 'none'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hum, but !this.isScreenSharing()
is taken into account two lines above? I don't see the change with this PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@damencho Sorry for the previous mistake, I just updated the pull request
Thanks in advanced
The change LGTM now. |
Jenkins test this please. |
There was an issue with the screen share in which after changing the virtual background the screen share video tag had a scale with a -1 value, I edited this and added the
!isScreenShare()
condition before it. Now the issue doesn't exists anymore :)