fix(@desktop/chat): fix replying to message at early chat
When replying to a chat, we were reloading messages and rerendering the messages which were causing issue with the reply id fixes #3219
This commit is contained in:
parent
153cfeb138
commit
6ae4568807
|
@ -232,7 +232,7 @@ Item {
|
||||||
|
|
||||||
onContentYChanged: {
|
onContentYChanged: {
|
||||||
scrollDownButton.visible = (contentHeight - (scrollY + height) > 400)
|
scrollDownButton.visible = (contentHeight - (scrollY + height) > 400)
|
||||||
if(scrollY < 500){
|
if(scrollDownButton.visible && scrollY < 500){
|
||||||
loadMsgs();
|
loadMsgs();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue