Skip to content

Commit

Permalink
Another fix. (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines authored Mar 9, 2022
1 parent ac40b8f commit 55f2954
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ fun CommentFooterLine(
)
if (showRead) {
ActionBarButton(
icon = Icons.Filled.Check,
icon = Icons.Default.Check,
onClick = { onMarkAsReadClick(commentView) },
contentColor = if (commentView.comment.read) {
Color.Green
Expand All @@ -357,7 +357,7 @@ fun CommentFooterLine(
)
}
ActionBarButton(
icon = Icons.Filled.Star,
icon = Icons.Default.StarOutline,
onClick = { onSaveClick(commentView) },
contentColor = if (commentView.saved) {
Color.Yellow
Expand All @@ -369,13 +369,13 @@ fun CommentFooterLine(
// Don't let you respond to your own comment.
if (commentView.creator.id != account?.id) {
ActionBarButton(
icon = Icons.Filled.Reply,
icon = Icons.Default.Reply,
onClick = { onReplyClick(commentView) },
account = account,
)
}
ActionBarButton(
icon = Icons.Filled.MoreVert,
icon = Icons.Default.MoreVert,
account = account,
onClick = { showMoreOptions = !showMoreOptions }
)
Expand Down

0 comments on commit 55f2954

Please sign in to comment.