Merge pull request #463 from SenecaCDOT-BigBlueButton/maybefix-chat-list-overflow

taking another shot at fixing the chat list stack overflow
This commit is contained in:
Fred Dixon 2014-12-10 19:42:35 -05:00
commit b8f3f14725
2 changed files with 2 additions and 2 deletions

View File

@ -636,7 +636,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
<mx:HBox width="100%" height="{chatListHeight}" verticalScrollPolicy="off">
<chat:AdvancedList width="100%" height="{chatListHeight}" id="chatMessagesList" selectable="false" variableRowHeight="true"
itemRenderer="org.bigbluebutton.modules.chat.views.ChatMessageRenderer" verticalScrollPolicy="auto" wordWrap="true"
itemRenderer="org.bigbluebutton.modules.chat.views.ChatMessageRenderer" verticalScrollPolicy="on" horizontalScrollPolicy="off" wordWrap="true"
dataProvider="{chatMessages.messages}"
tabIndex="{baseIndex}"
accessibilityName="{ResourceUtil.getInstance().getString('bbb.chat.messageList')}" />

View File

@ -76,7 +76,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
]]>
</mx:Script>
<mx:Canvas width="100%" id="hbHeader">
<mx:Canvas width="100%" id="hbHeader" verticalScrollPolicy="off" horizontalScrollPolicy="off">
<mx:Label id="lblName" text="{data.name}" visible="true" color="gray" textAlign="left" left="0"/>
<mx:Text id="lblTime" htmlText="{data.time}" textAlign="right"
visible="true"