diff --git a/lib/codemirror.js b/lib/codemirror.js index ac4959e8787f683520054cab63e1822bf81a18a9..de21497c2c4a6e82ca31305a8c7c85781a284bb2 100644 --- a/lib/codemirror.js +++ b/lib/codemirror.js @@ -723,9 +723,10 @@ // view, so that we don't interleave reading and writing to the DOM. function getDimensions(cm) { var d = cm.display, left = {}, width = {}; + var gutterLeft = d.gutters.clientLeft; for (var n = d.gutters.firstChild, i = 0; n; n = n.nextSibling, ++i) { - left[cm.options.gutters[i]] = n.offsetLeft; - width[cm.options.gutters[i]] = n.offsetWidth; + left[cm.options.gutters[i]] = n.offsetLeft + n.clientLeft + gutterLeft; + width[cm.options.gutters[i]] = n.clientWidth; } return {fixedPos: compensateForHScroll(d), gutterTotalWidth: d.gutters.offsetWidth,