Revision: 3922
Author: seba.wagner
Date: Fri Jul 1 05:21:36 2011
Log: Fixes Issue 1423
http://code.google.com/p/openmeetings/source/detail?r=3922
Modified:
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/drawViewNew.lzx
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/tools/baseDrawLine.lzx
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/tools/baseDrawPaint.lzx
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/tools/baseDrawRect.lzx
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/tools/baseDrawULine.lzx
=======================================
---
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/drawViewNew.lzx
Fri Apr 23 08:19:14 2010
+++
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/drawViewNew.lzx
Fri Jul 1 05:21:36 2011
@@ -29,7 +29,7 @@
<!--
this is the Base Container for all Whiteboard Objects
-->
-<class name="drawViewNew" extends="drawview" cachebitmap="false" x="-1"
y="-1" >
+<class name="drawViewNew" extends="drawview" cachebitmap="false" x="0"
y="0" >
<attribute name="typeOfObject" value="paint" type="string" />
=======================================
---
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/tools/baseDrawLine.lzx
Tue Apr 26 02:23:02 2011
+++
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/tools/baseDrawLine.lzx
Fri Jul 1 05:21:36 2011
@@ -19,6 +19,7 @@
}
this.currentlayer = new lz.drawViewNew(this,{
name:oid_name,width:this.width+2,height:this.height+2,
+ x:-1,y:-1,
opacity:this.currentlineOpacity});
this.drawlineOnObject(this.currentlayer,-1,-1,0,0);
this.drawlineOnObject(this.currentlayer,this.width,this.height,this.width+1,this.height+1);
=======================================
---
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/tools/baseDrawPaint.lzx
Sat Jun 11 01:36:43 2011
+++
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/tools/baseDrawPaint.lzx
Fri Jul 1 05:21:36 2011
@@ -48,6 +48,7 @@
//Debug.write("startPaint ",this.startx,this.starty);
this.currentlayer = new lz.drawViewNew(this,{
name:'paint'+this.getCounter(),width:this.width+2,height:this.height+2,
+ x:-1,y:-1,
opacity:this.currentlayerOpacity});
this.drawlineOnObject(this.currentlayer,-1,-1,0,0);
this.drawlineOnObject(this.currentlayer,this.width,this.height,this.width+1,this.height+1);
=======================================
---
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/tools/baseDrawRect.lzx
Tue Apr 26 02:23:02 2011
+++
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/tools/baseDrawRect.lzx
Fri Jul 1 05:21:36 2011
@@ -26,7 +26,7 @@
this.currentlayer = new lz.drawViewNew(this,{
name:oid_name,width:this.width,height:this.height,
opacity:this.currentrectangleOpacity});
- this.currentlayer
+
this.drawlineOnObject(this.currentlayer,-1,-1,0,0);
this.drawlineOnObject(this.currentlayer,this.width,this.height,this.width+1,this.height+1);
</method>
=======================================
---
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/tools/baseDrawULine.lzx
Fri Jul 1 05:03:46 2011
+++
/trunk/singlewebapp/WebContent/openmeetings/modules/conference/whiteboard/base/tools/baseDrawULine.lzx
Fri Jul 1 05:21:36 2011
@@ -19,6 +19,7 @@
//Debug.write("startUline ",this.startx,this.starty);
this.currentlayer = new lz.drawViewNew(this,{
name:oid_name,width:this.width+2,height:this.height+2,
+ x:-1,y:-1,
opacity:this.currentulineOpacity});
this.drawlineOnObject(this.currentlayer,-1,-1,0,0);
this.drawlineOnObject(this.currentlayer,this.width,this.height,this.width+1,this.height+1);
--
You received this message because you are subscribed to the Google Groups
"OpenMeetings developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/openmeetings-dev?hl=en.