diff options
author | fiaxh <git@mx.ax.lt> | 2017-03-18 23:44:05 +0100 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2017-03-18 23:44:05 +0100 |
commit | be2234835a96601ac7dfffa93bd27a70a02b299e (patch) | |
tree | e452bda72de538a209a913f900a059cbdc954b82 /main/src/ui/conversation_summary/conversation_item.vala | |
parent | 582cc78edd35d7d3a9ab6ddc579919306a2325f5 (diff) | |
download | dino-be2234835a96601ac7dfffa93bd27a70a02b299e.tar.gz dino-be2234835a96601ac7dfffa93bd27a70a02b299e.zip |
Preselect next conversation when closed and crossfade
Diffstat (limited to 'main/src/ui/conversation_summary/conversation_item.vala')
-rw-r--r-- | main/src/ui/conversation_summary/conversation_item.vala | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/main/src/ui/conversation_summary/conversation_item.vala b/main/src/ui/conversation_summary/conversation_item.vala index 480ccd48..fa91f78e 100644 --- a/main/src/ui/conversation_summary/conversation_item.vala +++ b/main/src/ui/conversation_summary/conversation_item.vala @@ -22,10 +22,8 @@ public interface ConversationItem : Gtk.Widget { switch (get_message_kind(message)) { case MessageKind.TEXT: return new MergedMessageItem(stream_interactor, conversation, message); - break; case MessageKind.ME_COMMAND: return new SlashMeItem(stream_interactor, conversation, message); - break; } return null; } |