Skip to content
Snippets Groups Projects
Commit b1933b7e authored by Chad Pilkey's avatar Chad Pilkey
Browse files

private chat tabs now adjust to the current font size when opened

parent b28cb66f
No related branches found
No related tags found
No related merge requests found
......@@ -45,26 +45,26 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
import flash.media.Sound;
import flash.media.SoundChannel;
import flash.utils.Timer;
import flexlib.controls.tabBarClasses.SuperTab;
import flexlib.controls.textClasses.StringBoundaries;
import flexlib.events.SuperTabEvent;
import flexlib.mdi.containers.MDIWindow;
import mx.collections.ArrayCollection;
import mx.containers.ControlBar;
import mx.controls.Button;
import mx.core.Container;
import mx.core.UIComponent;
import mx.events.IndexChangedEvent;
import org.bigbluebutton.common.LogUtil;
import org.bigbluebutton.core.BBB;
import org.bigbluebutton.core.EventConstants;
import org.bigbluebutton.core.UsersUtil;
import org.bigbluebutton.core.events.CoreEvent;
import org.bigbluebutton.core.managers.UserManager;
import org.bigbluebutton.main.events.BBBEvent;
import org.bigbluebutton.main.events.BBBEvent;
import org.bigbluebutton.main.events.ShortcutEvent;
import org.bigbluebutton.main.model.users.BBBUser;
import org.bigbluebutton.modules.chat.ChatUtil;
......@@ -266,7 +266,11 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
chatBox.id = chatWithUserID;
chatBox.name = chatWithUserID;
chatBox.baseIndex = baseIndex;
if (chatTabs.getChildByName(TAB_BOX_ID)) {
chatBox.setStyle("fontSize", int((chatTabs.getChildByName(TAB_BOX_ID) as AddChatTabBox).cmbFontSize.selectedItem));
}
if (publicChat) {
chatBox.label = PUBLIC_CHAT_USERNAME
chatBox.publicChat = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment