Hide jump to unread button on threads, override scroll to bottom action, fix #5264

This commit is contained in:
ismailgulek
2021-12-08 16:04:11 +03:00
parent 78b402c232
commit 254e714fc5
3 changed files with 29 additions and 2 deletions
@@ -26,4 +26,20 @@ public class ThreadDataSource: RoomDataSource {
showTypingRow = false
}
public override var showReadMarker: Bool {
get {
return false
} set {
_ = newValue
}
}
public override var showBubbleReceipts: Bool {
get {
return false
} set {
_ = newValue
}
}
}