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:
parent
8b37ca2524
commit
8d61826887
3
TODO.md
3
TODO.md
@ -3,10 +3,7 @@
|
|||||||
- handle invalid access token
|
- handle invalid access token
|
||||||
- If an account is gone from the user's config, discard UI state last page
|
- If an account is gone from the user's config, discard UI state last page
|
||||||
- room A-Z sorting
|
- room A-Z sorting
|
||||||
- up/down doesn't work in the middle of a @word for which autocompletion isn't
|
|
||||||
open because no matches
|
|
||||||
- filter > enter > room list is always scrolled to top
|
- filter > enter > room list is always scrolled to top
|
||||||
- change profile → post in room → message shows as old profile
|
|
||||||
- session list: prevent tab-focusing the delegates
|
- session list: prevent tab-focusing the delegates
|
||||||
- refresh server list button
|
- refresh server list button
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ Rectangle {
|
|||||||
|
|
||||||
MessageArea {
|
MessageArea {
|
||||||
id: messageArea
|
id: messageArea
|
||||||
autoCompletionOpen: userCompletion.open
|
autoCompletionOpen: userCompletion.open && userCompletion.count
|
||||||
usersCompleted: userCompletion.usersCompleted
|
usersCompleted: userCompletion.usersCompleted
|
||||||
|
|
||||||
onAutoCompletePrevious: userCompletion.previous()
|
onAutoCompletePrevious: userCompletion.previous()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user