Fix #14 so that it can create lowercase/uppercase notes as the user wants

This commit is contained in:
Seongjae Lee
2015-05-16 22:49:55 -07:00
parent 6207b379eb
commit 3679cf0a71
+1 -1
View File
@@ -47,7 +47,7 @@ class NotationalVelocityView extends SelectListView
currCursorPosition = editor.getCursorBufferPosition().column
if titleItem != null && @prevCursorPosition < currCursorPosition
@prevFilterQuery = titleItem.getTitle()
editor.setText(titleItem.getTitle())
editor.setText(filterQuery + titleItem.getTitle().slice(filterQuery.length))
editor.selectLeft(titleItem.getTitle().length - filterQuery.length)
@prevCursorPosition = currCursorPosition