From 8f0486415751041ea9016649dbfcb64b1f03fb6c Mon Sep 17 00:00:00 2001 From: Irakli Gozalishvili Date: Wed, 20 Jul 2011 17:58:57 +0200 Subject: [PATCH] Fixing issue with multiline selection where selection does not start from the begining of line. --- lib/ace/layer/marker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ace/layer/marker.js b/lib/ace/layer/marker.js index efaebc02..ab50b46c 100644 --- a/lib/ace/layer/marker.js +++ b/lib/ace/layer/marker.js @@ -150,7 +150,7 @@ var Marker = function(parentEl) { "height:", height, "px;", "width:", width, "px;", "top:", top, "px;", - "left:", left, "px;'>" + "left:", this.$padding, "px;'>" ); // all the complete lines @@ -165,7 +165,7 @@ var Marker = function(parentEl) { "height:", height, "px;", "width:", width, "px;", "top:", top, "px;", - "left:", left, "px;'>" + "left:", this.$padding, "px;'>" ); };