diff options
author | fiaxh <git@mx.ax.lt> | 2017-03-15 00:36:56 +0100 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2017-03-15 21:55:26 +0100 |
commit | 4faee9f08dca187b04a6f5719fe766a3b4375460 (patch) | |
tree | b16c7d1c5e363454624610db42b5c4f1d4aa309b /main/src/ui/conversation_summary | |
parent | 5038db063ec3981385dd68a3069e8edd0b52075d (diff) | |
download | dino-4faee9f08dca187b04a6f5719fe766a3b4375460.tar.gz dino-4faee9f08dca187b04a6f5719fe766a3b4375460.zip |
Set dino-specific icons as part of icon theme
Diffstat (limited to 'main/src/ui/conversation_summary')
-rw-r--r-- | main/src/ui/conversation_summary/merged_message_item.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/ui/conversation_summary/merged_message_item.vala b/main/src/ui/conversation_summary/merged_message_item.vala index 695bf589..190be50a 100644 --- a/main/src/ui/conversation_summary/merged_message_item.vala +++ b/main/src/ui/conversation_summary/merged_message_item.vala @@ -94,10 +94,10 @@ public class MergedMessageItem : Grid { } if (all_read) { received_image.visible = true; - received_image.set_from_resource("/org/dino-im/img/double_tick.svg"); + received_image.set_from_icon_name("dino-double-tick-symbolic", IconSize.SMALL_TOOLBAR); } else if (all_received) { received_image.visible = true; - received_image.set_from_resource("/org/dino-im/img/tick.svg"); + received_image.set_from_icon_name("dino-tick-symbolic", IconSize.SMALL_TOOLBAR); } else if (received_image.visible) { received_image.set_from_icon_name("image-loading-symbolic", IconSize.SMALL_TOOLBAR); } |