Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
DoughnutSlayer committed Nov 5, 2017
1 parent 3f0c985 commit 83e4c4b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/highlight-line-model.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@ class HighlightLineView
bottomLine = selectionRange.copy()

topLine.end = topLine.start
bottomLine.start = new Point(bottomLine.end.row - 1,
bottomLine.end.column)
bottomLine.start = bottomLine.end
if bottomLine.start.column == 0
bottomLine.start.row -= 1

style = atom.config.get "highlight-line.underline"

Expand Down

0 comments on commit 83e4c4b

Please sign in to comment.