Fix moving cursor.
This commit is contained in:
parent
7ceb391621
commit
d9e778fe0c
|
@ -177,8 +177,8 @@ Rectangle {
|
|||
if (event.modifiers & Qt.ShiftModifier) {
|
||||
insert(cursorPosition, "\n")
|
||||
} else if (userAutoComplete.visible) {
|
||||
text = text.substring(0, text.lastIndexOf(" "));
|
||||
insert(cursorPosition, userAutoCompleteListView.currentItem.displayName)
|
||||
remove(text.lastIndexOf(" ") + 1, text.length)
|
||||
insert(cursorPosition, userAutoCompleteListView.currentItem.displayName + " ")
|
||||
userAutoComplete.visible = false
|
||||
} else {
|
||||
postMessage(text)
|
||||
|
|
Loading…
Reference in New Issue