From 2f1f43384976ca202c2e483a0f84e09bfcf0ca2d Mon Sep 17 00:00:00 2001 From: deniszgonjanin Date: Mon, 7 Jun 2010 18:06:51 +0000 Subject: [PATCH] Fix for the bug where ChatWindow may obscure the whiteboard toolbar --- .../modules/highlighter/views/HighlighterToolbar.mxml | 1 + 1 file changed, 1 insertion(+) diff --git a/bigbluebutton-client/src/org/bigbluebutton/modules/highlighter/views/HighlighterToolbar.mxml b/bigbluebutton-client/src/org/bigbluebutton/modules/highlighter/views/HighlighterToolbar.mxml index a3bcfff22a..fce34e2c2c 100755 --- a/bigbluebutton-client/src/org/bigbluebutton/modules/highlighter/views/HighlighterToolbar.mxml +++ b/bigbluebutton-client/src/org/bigbluebutton/modules/highlighter/views/HighlighterToolbar.mxml @@ -147,6 +147,7 @@ presentationWindow = window; presentationWindow.addEventListener(MoveEvent.MOVE, setPositionAndDepth); presentationWindow.addEventListener(ResizeEvent.RESIZE, setPositionAndDepth); + presentationWindow.addEventListener(MouseEvent.CLICK, setPositionAndDepth); this.x = presentationWindow.x + presentationWindow.width + 3; this.y = presentationWindow.y + 30; parent.setChildIndex(this, parent.numChildren-1);