fix(ui): The message should be *just* visible

This commit is contained in:
PapaTutuWawa 2023-07-04 13:47:41 +02:00
parent 71f5e8f0b4
commit efb3f4b371

View File

@ -324,7 +324,7 @@ class ConversationPageState extends State<ConversationPage>
visibilityCallback: (info) {
if (sentBySelf) return;
if (info.visibleFraction >= 0.2) {
if (info.visibleFraction >= 0) {
GetIt.I.get<UIReadMarkerService>().handleMarker(message);
}
},