Skip to content
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

Merged

Conversation

fatemehmarzoughi
Copy link
Contributor

@fatemehmarzoughi fatemehmarzoughi commented Jul 7, 2023

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 :)

@jitsi-jenkins
Copy link

Hi, thanks for your contribution!
If you haven't already done so, could you please make sure you sign our CLA (https://jitsi.org/icla for individuals and https://jitsi.org/ccla for corporations)? We would unfortunately be unable to merge your patch unless we have that piece :(.

@damencho damencho added the info:cla-signed The CLA has been signed label Jul 7, 2023
@@ -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';
Copy link
Member

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?

Copy link
Contributor Author

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

@saghul
Copy link
Member

saghul commented Jul 7, 2023

The change LGTM now.

@damencho
Copy link
Member

damencho commented Jul 7, 2023

Jenkins test this please.

@damencho damencho merged commit e8766b2 into jitsi:master Jul 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
info:cla-signed The CLA has been signed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants