From 85f4bddf99f92647e67e7b69c1e1902730f5ea8f Mon Sep 17 00:00:00 2001 From: fiaxh Date: Mon, 3 Jan 2022 23:00:27 +0100 Subject: Use opacity for "pending" and "edited" hints Getting the dim-label color doesn't work without actually rendering it --- main/src/ui/conversation_content_view/message_widget.vala | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'main/src/ui/conversation_content_view') diff --git a/main/src/ui/conversation_content_view/message_widget.vala b/main/src/ui/conversation_content_view/message_widget.vala index a2325797..2b5fd793 100644 --- a/main/src/ui/conversation_content_view/message_widget.vala +++ b/main/src/ui/conversation_content_view/message_widget.vala @@ -216,10 +216,8 @@ public class MessageItemWidget : SizeRequestBin { markup_text = @"" + markup_text + ""; } - string gray_color = Util.rgba_to_hex(Util.get_label_pango_class_color(label, "dim-label")); - if (message.edit_to != null) { - markup_text += " (%s)".printf(gray_color, _("edited")); + markup_text += " (%s)".printf(_("edited")); theme_dependent = true; } @@ -228,7 +226,7 @@ public class MessageItemWidget : SizeRequestBin { if (message.direction == Message.DIRECTION_SENT && (message.marked == Message.Marked.SENDING || message.marked == Message.Marked.UNSENT)) { // Append "pending..." iff message has not been sent yet if (message.time.compare(new DateTime.now_utc().add_seconds(-10)) < 0) { - markup_text += " %s".printf(gray_color, _("pending…")); + markup_text += " %s".printf(_("pending…")); theme_dependent = true; additional_info = AdditionalInfo.PENDING; } else { -- cgit v1.2.3-54-g00ecf