Disable local video when moving to a conference call (had to explicitly "doClick" the button instead of just invoking setSelected(false) in order to trigger the exact operation).

cusax-fix
Yana Stamcheva 16 years ago
parent 0f5b68553b
commit 40399de84a

@ -799,10 +799,10 @@ private void updateCurrentCallPanel(JComponent callPanel)
{
// First disable video.
if (videoButton.isSelected())
videoButton.setSelected(false);
videoButton.doClick();
if (fullScreenButton.isSelected())
fullScreenButton.setSelected(false);
fullScreenButton.doClick();
settingsPanel.remove(videoButton);
settingsPanel.remove(transferCallButton);

Loading…
Cancel
Save