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

Fix video thumbnails for Qt on Linux.
This commit is contained in:
Дамян Минков 2016-08-23 15:36:52 -05:00 committed by GitHub
commit 49cc4ae087
1 changed files with 2 additions and 1 deletions

View File

@ -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");
}
};