Skip to content
Snippets Groups Projects
Commit 881c0c57 authored by Richard Alam's avatar Richard Alam
Browse files

- increase size of text field so that text doesn't get chooped when zooming

parent 87e989f3
No related branches found
No related tags found
No related merge requests found
......@@ -142,7 +142,7 @@ package org.bigbluebutton.modules.whiteboard.business.shapes
// setTextFormat(new TextFormat(fontStyle, newFontSize, textColor));
// ensure typing doesn't go off of whiteboard
// this.width = 250;
this.width = 500;
}
public function get oldParentWidth():Number {
......@@ -173,7 +173,9 @@ package org.bigbluebutton.modules.whiteboard.business.shapes
// setTextFormat(new TextFormat(fontStyle, newFontSize, textColor));
// ensure typing doesn't go off of whiteboard
// this.width = 250;
this.width = 500;
LogUtil.debug("Redraw 2 Old parent dim [" + this.width + "," + this.height + "] newFontSize=" + newFontSize);
}
public function getProperties():Array {
......
......@@ -66,7 +66,6 @@ package org.bigbluebutton.modules.whiteboard.services
private function handleClearCommand(message:Object):void {
LogUtil.debug("Handle Whiteboard Clear Command ");
// dispatcher.dispatchEvent(new WhiteboardUpdate(WhiteboardUpdate.BOARD_CLEARED));
whiteboardModel.clear();
}
......@@ -113,7 +112,7 @@ package org.bigbluebutton.modules.whiteboard.services
if (an.id == undefined || an.id == null || an.id == "") return;
if (an.status == undefined || an.status == null || an.status == "") return;
LogUtil.debug("handleRequestAnnotationHistoryReply: annotation id=" + an.id);
// LogUtil.debug("handleRequestAnnotationHistoryReply: annotation id=" + an.id);
var annotation:Annotation = new Annotation(an.id, an.type, an);
annotation.status = an.status;
......
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