fixup jumping to pins

This commit is contained in:
Henry Hiles 2026-09-26 13:30:39 -04:00
commit 0149aa2f84
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs

View file

@ -66,6 +66,7 @@ final class const PinnedEventsDrawer(
}, },
child: Padding( child: Padding(
padding: .symmetric(vertical: 4), padding: .symmetric(vertical: 4),
child: IgnorePointer(
child: EventRenderer( child: EventRenderer(
event, event,
maxLines: 2, maxLines: 2,
@ -73,6 +74,7 @@ final class const PinnedEventsDrawer(
getEventOptions: getEventOptions, getEventOptions: getEventOptions,
), ),
), ),
),
); );
}, },
), ),