Fixes enabling of the video indicator of the focus peer panel.

cusax-fix
hristoterezov 13 years ago
parent 7ccf8e4d77
commit 9d3bdfbafe

@ -577,6 +577,17 @@ public void enableVideoIndicator( ConferenceMember confMember,
confMemberPanel.enableVideoIndicator(enable);
}
/**
* Enables or disabled video indicator of the <tt>focusPeerPanel</tt>.
*
* @param enable <tt>true</tt> to enable video indicator, <tt>false</tt> -
* otherwise
*/
public void enableVideoIndicator(boolean enable)
{
focusPeerPanel.enableVideoIndicator(enable);
}
/**
* Implements the listeners which get notified about events related to the
* <tt>CallPeer</tt> depicted by this <tt>ConferenceFocusPanel</tt> and

@ -60,6 +60,12 @@ public void updateThumbnail(CallPeer callPeer, boolean isVideo)
((ConferencePeerPanel) peerRenderer)
.enableVideoIndicator(isVideo);
}
if (peerRenderer instanceof ConferenceFocusPanel)
{
((ConferenceFocusPanel) peerRenderer)
.enableVideoIndicator(isVideo);
}
}
/**

Loading…
Cancel
Save