From 55f295426d555058be3be55dd915a293b5ce9fa1 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Wed, 9 Mar 2022 18:50:44 +0000 Subject: [PATCH] Another fix. (#119) --- .../java/com/jerboa/ui/components/comment/CommentNode.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/main/java/com/jerboa/ui/components/comment/CommentNode.kt b/app/src/main/java/com/jerboa/ui/components/comment/CommentNode.kt index a9541fe2c..9fcfafa0c 100644 --- a/app/src/main/java/com/jerboa/ui/components/comment/CommentNode.kt +++ b/app/src/main/java/com/jerboa/ui/components/comment/CommentNode.kt @@ -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 @@ -357,7 +357,7 @@ fun CommentFooterLine( ) } ActionBarButton( - icon = Icons.Filled.Star, + icon = Icons.Default.StarOutline, onClick = { onSaveClick(commentView) }, contentColor = if (commentView.saved) { Color.Yellow @@ -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 } )