Merge pull request #802 from jitsi/fix-video-linux-qt

Fix video thumbnails for Qt on Linux.
pull/805/head 1187
Дамян Минков 9 years ago committed by GitHub
commit 49cc4ae087
  1. 3
      modules/UI/videolayout/SmallVideo.js

@ -543,7 +543,8 @@ SmallVideo.prototype.initBrowserSpecificProperties = function() {
var userAgent = window.navigator.userAgent;
if (userAgent.indexOf("QtWebEngine") > -1
&& userAgent.indexOf("Windows") > -1) {
&& (userAgent.indexOf("Windows") > -1
|| userAgent.indexOf("Linux") > -1)) {
$('#' + this.videoSpanId).css("overflow", "hidden");
}
};

Loading…
Cancel
Save