Merge pull request #3886 from kepstin/flash-cursors
New cursors for flash client
BIN
bigbluebutton-client/src/org/bigbluebutton/common/assets/images/ellipse.png
Executable file → Normal file
Before Width: | Height: | Size: 442 B After Width: | Height: | Size: 926 B |
BIN
bigbluebutton-client/src/org/bigbluebutton/common/assets/images/line.png
Executable file → Normal file
Before Width: | Height: | Size: 219 B After Width: | Height: | Size: 336 B |
Before Width: | Height: | Size: 712 B After Width: | Height: | Size: 850 B |
BIN
bigbluebutton-client/src/org/bigbluebutton/common/assets/images/square.png
Executable file → Normal file
Before Width: | Height: | Size: 164 B After Width: | Height: | Size: 345 B |
BIN
bigbluebutton-client/src/org/bigbluebutton/common/assets/images/text.png
Executable file → Normal file
Before Width: | Height: | Size: 414 B After Width: | Height: | Size: 621 B |
BIN
bigbluebutton-client/src/org/bigbluebutton/common/assets/images/triangle.png
Executable file → Normal file
Before Width: | Height: | Size: 366 B After Width: | Height: | Size: 939 B |
@ -211,16 +211,16 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
|||||||
} else if(toolType == DrawObject.RECTANGLE) {
|
} else if(toolType == DrawObject.RECTANGLE) {
|
||||||
CursorManager.setCursor(rectangle_icon);
|
CursorManager.setCursor(rectangle_icon);
|
||||||
} else if(toolType == DrawObject.TRIANGLE) {
|
} else if(toolType == DrawObject.TRIANGLE) {
|
||||||
CursorManager.setCursor(triangle_icon, 2, -7, 0);
|
CursorManager.setCursor(triangle_icon);
|
||||||
} else if(toolType == DrawObject.PENCIL) {
|
} else if(toolType == DrawObject.PENCIL) {
|
||||||
CursorManager.setCursor(pencil_icon, 2, 0, -16);
|
CursorManager.setCursor(pencil_icon, 2, -1, -21);
|
||||||
} else if(toolType == DrawObject.LINE) {
|
} else if(toolType == DrawObject.LINE) {
|
||||||
CursorManager.setCursor(line_icon, 2, 0, -14);
|
CursorManager.setCursor(line_icon);
|
||||||
} else if(toolType == DrawObject.HIGHLIGHTER) {
|
} else if(toolType == DrawObject.HIGHLIGHTER) {
|
||||||
CursorManager.setCursor(highlighter_icon);
|
CursorManager.setCursor(highlighter_icon);
|
||||||
} else if(toolType == DrawObject.ERASER) {
|
} else if(toolType == DrawObject.ERASER) {
|
||||||
CursorManager.setCursor(eraser_icon);
|
CursorManager.setCursor(eraser_icon);
|
||||||
} else if(toolType == TextObject.TEXT_TOOL) {
|
} else if(toolType == DrawObject.TEXT) {
|
||||||
CursorManager.setCursor(text_icon);
|
CursorManager.setCursor(text_icon);
|
||||||
// } else if(toolType == SelectObject.SELECT_TOOL) {
|
// } else if(toolType == SelectObject.SELECT_TOOL) {
|
||||||
// CursorManager.setCursor(select_icon);
|
// CursorManager.setCursor(select_icon);
|
||||||
|