From 9764fe52dea7679bb4161f00832579f280728285 Mon Sep 17 00:00:00 2001 From: damencho Date: Thu, 27 Oct 2016 16:56:32 -0500 Subject: [PATCH] Removed not needed setting of the quality to 0. We now just hide the icon with values and show the interrupted one. Calling this one was causing troubles like flickering and stats popover not able to hide, once shown. On hover we are calling updateView which ends to this call which destroy and create the popover, which maybe is leading to this problems. --- modules/UI/videolayout/ConnectionIndicator.js | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/UI/videolayout/ConnectionIndicator.js b/modules/UI/videolayout/ConnectionIndicator.js index d73be9c7f..829c7c97d 100644 --- a/modules/UI/videolayout/ConnectionIndicator.js +++ b/modules/UI/videolayout/ConnectionIndicator.js @@ -332,7 +332,6 @@ ConnectionIndicator.prototype.updateConnectionStatusIndicator $(this.interruptedIndicator).show(); $(this.emptyIcon).hide(); $(this.fullIcon).hide(); - this.updateConnectionQuality(0 /* zero bars */); } };