diff options
author | fiaxh <git@mx.ax.lt> | 2017-03-10 16:16:48 +0100 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2017-03-10 17:29:23 +0100 |
commit | 9b8cf706d6b0ff83472af53c31b96c4c2f55f6b7 (patch) | |
tree | f31048126f135156da9d98f20cb4254933d9841d /client/src/ui/conversation_summary | |
parent | 2fe8489d368a371aefbfbe66e74621a8df14cdc2 (diff) | |
download | dino-9b8cf706d6b0ff83472af53c31b96c4c2f55f6b7.tar.gz dino-9b8cf706d6b0ff83472af53c31b96c4c2f55f6b7.zip |
Outfactor PGP into pgpme-vala
Diffstat (limited to 'client/src/ui/conversation_summary')
-rw-r--r-- | client/src/ui/conversation_summary/merged_message_item.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/ui/conversation_summary/merged_message_item.vala b/client/src/ui/conversation_summary/merged_message_item.vala index b73e8b4f..3647d082 100644 --- a/client/src/ui/conversation_summary/merged_message_item.vala +++ b/client/src/ui/conversation_summary/merged_message_item.vala @@ -68,11 +68,11 @@ public class MergedMessageItem : Grid { } private void update_received() { - received_image.visible = true; bool all_received = true; bool all_read = true; foreach (Message message in messages) { if (message.marked == Message.Marked.WONTSEND) { + received_image.visible = true; Gtk.IconTheme icon_theme = Gtk.IconTheme.get_default(); Gtk.IconInfo? icon_info = icon_theme.lookup_icon("dialog-warning-symbolic", IconSize.SMALL_TOOLBAR, 0); received_image.set_from_pixbuf(icon_info.load_symbolic({1,0,0,1})); |