Fix up/down not working with cursor in @word
In the composer, when the text cursor was inside a word starting with a @ but not matching any username (thus the completion UI being invisible), pressing up/down arrow would not do anything instead of going to the prev/next line.
This commit is contained in:
@@ -42,7 +42,7 @@ Rectangle {
|
||||
|
||||
MessageArea {
|
||||
id: messageArea
|
||||
autoCompletionOpen: userCompletion.open
|
||||
autoCompletionOpen: userCompletion.open && userCompletion.count
|
||||
usersCompleted: userCompletion.usersCompleted
|
||||
|
||||
onAutoCompletePrevious: userCompletion.previous()
|
||||
|
Reference in New Issue
Block a user