Commit 3f5ed0ca authored by Oleg Korshul's avatar Oleg Korshul

fix bug 32880

parent e3b2d123
...@@ -292,6 +292,7 @@ ...@@ -292,6 +292,7 @@
var xPos = x ? x : parseInt(oTarget.style.left); var xPos = x ? x : parseInt(oTarget.style.left);
var yPos = (y ? y : parseInt(oTarget.style.top)) + parseInt(oTarget.style.height); var yPos = (y ? y : parseInt(oTarget.style.top)) + parseInt(oTarget.style.height);
/*
if (!this.isDebug && !this.isSystem) if (!this.isDebug && !this.isSystem)
{ {
this.HtmlDiv.style.left = xPos + "px"; this.HtmlDiv.style.left = xPos + "px";
...@@ -302,6 +303,10 @@ ...@@ -302,6 +303,10 @@
// this.HtmlAreaOffset - не сдвигаем, курсор должен быть виден // this.HtmlAreaOffset - не сдвигаем, курсор должен быть виден
this.debugCalculatePlace(xPos, yPos); this.debugCalculatePlace(xPos, yPos);
} }
*/
if (!this.isDebug && !this.isSystem)
yPos += this.HtmlAreaOffset;
this.debugCalculatePlace(xPos, yPos);
}, },
putAreaValue : function(val) putAreaValue : function(val)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment