New icon for "poll end" in both action menu and timeline item. (#1203)

- Also fixes preview of action list (reply is included as it will soon be added).
This commit is contained in:
Marco Romano 2023-08-31 15:40:51 +02:00 committed by GitHub
parent 4ba8e9b7fe
commit 88eda62f56
9 changed files with 43 additions and 27 deletions

View file

@ -116,9 +116,11 @@ fun aTimelineItemActionList(): ImmutableList<TimelineItemAction> {
}
fun aTimelineItemPollActionList(): ImmutableList<TimelineItemAction> {
return persistentListOf(
TimelineItemAction.Reply,
TimelineItemAction.EndPoll,
TimelineItemAction.Reply,
TimelineItemAction.Copy,
TimelineItemAction.Developer,
TimelineItemAction.ReportContent,
TimelineItemAction.Redact,
)
}