diff options
Diffstat (limited to 'src/components/channels.hpp')
-rw-r--r-- | src/components/channels.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/channels.hpp b/src/components/channels.hpp index 36c7766..8aee733 100644 --- a/src/components/channels.hpp +++ b/src/components/channels.hpp @@ -16,6 +16,7 @@ constexpr static int GuildIconSize = 24; constexpr static int DMIconSize = 20; +constexpr static int VoiceParticipantIconSize = 18; constexpr static int OrphanChannelSortOffset = -100; // forces orphan channels to the top of the list class ChannelList : public Gtk::ScrolledWindow { @@ -84,6 +85,7 @@ protected: Gtk::TreeModel::iterator AddGuild(const GuildData &guild, const Gtk::TreeNodeChildren &root); Gtk::TreeModel::iterator UpdateCreateChannelCategory(const ChannelData &channel); Gtk::TreeModel::iterator CreateThreadRow(const Gtk::TreeNodeChildren &children, const ChannelData &channel); + Gtk::TreeModel::iterator CreateVoiceParticipantRow(const UserData &user, const Gtk::TreeNodeChildren &parent); void UpdateChannelCategory(const ChannelData &channel); |