Remove 0 height selection highlight
This commit is contained in:
parent
a2e05ac438
commit
14a8e1f5d9
1 changed files with 1 additions and 1 deletions
|
|
@ -155,7 +155,7 @@ var Marker = function(parentEl) {
|
|||
|
||||
// all the complete lines
|
||||
height = (range.end.row - range.start.row - 1) * config.lineHeight;
|
||||
if (height < 0)
|
||||
if (height <= 0)
|
||||
return;
|
||||
top = this.$getTop(range.start.row + 1, config);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue