Fix issue #662
This commit is contained in:
parent
656b34fc34
commit
e9118142db
1 changed files with 2 additions and 2 deletions
|
@ -103,8 +103,8 @@ module.exports = class SpellToolbarView extends View
|
||||||
|
|
||||||
updateScroll: ->
|
updateScroll: ->
|
||||||
return unless statementStart = @callState?.statements?[@statementIndex]?.range[0]
|
return unless statementStart = @callState?.statements?[@statementIndex]?.range[0]
|
||||||
text = @ace.getValue()
|
text = @ace.getValue() # code in editor
|
||||||
currentLine = text.substr(0, statementStart).split('\n').length - 1
|
currentLine = statementStart.row
|
||||||
@ace.scrollToLine currentLine, true, true
|
@ace.scrollToLine currentLine, true, true
|
||||||
|
|
||||||
setCallState: (callState, statementIndex, @callIndex, @metrics) ->
|
setCallState: (callState, statementIndex, @callIndex, @metrics) ->
|
||||||
|
|
Reference in a new issue