Commit 3870df7b by resurtm

Hover and error line increased by 1 px.

parent 92aae3a0
...@@ -460,10 +460,10 @@ window.onload = function() { ...@@ -460,10 +460,10 @@ window.onload = function() {
} }
lineNumbers[i].style.top = parseInt(lines[i].top - top) + 'px'; lineNumbers[i].style.top = parseInt(lines[i].top - top) + 'px';
hoverLines[i].style.top = parseInt(lines[i].top - top) + 'px'; hoverLines[i].style.top = parseInt(lines[i].top - top) + 'px';
hoverLines[i].style.height = parseInt(lines[i].bottom - lines[i].top) + 'px'; hoverLines[i].style.height = parseInt(lines[i].bottom - lines[i].top + 1) + 'px';
if (parseInt(callStackItem.getAttribute('data-line')) == i) { if (parseInt(callStackItem.getAttribute('data-line')) == i) {
errorLine.style.top = parseInt(lines[i].top - top) + 'px'; errorLine.style.top = parseInt(lines[i].top - top) + 'px';
errorLine.style.height = parseInt(lines[i].bottom - lines[i].top) + 'px'; errorLine.style.height = parseInt(lines[i].bottom - lines[i].top + 1) + 'px';
} }
} }
}; };
......
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