diff options
Diffstat (limited to 'components/chatlist.hpp')
-rw-r--r-- | components/chatlist.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/chatlist.hpp b/components/chatlist.hpp index 0726cf5..71ee4ed 100644 --- a/components/chatlist.hpp +++ b/components/chatlist.hpp @@ -20,6 +20,7 @@ public: void UpdateMessageReactions(Snowflake id); void SetFailedByNonce(const std::string &nonce); std::vector<Snowflake> GetRecentAuthors(); + void SetSeparateAll(bool separate); private: void OnScrollEdgeOvershot(Gtk::PositionType pos); @@ -35,6 +36,8 @@ private: bool m_should_scroll_to_bottom = true; Gtk::ListBox m_list; + bool m_separate_all = false; + public: // these are all forwarded by the parent using type_signal_action_message_delete = sigc::signal<void, Snowflake, Snowflake>; |