From 9dc2e863e847c03cec1cdb53ba7c58e0740ad481 Mon Sep 17 00:00:00 2001 From: ouwou <26526779+ouwou@users.noreply.github.com> Date: Tue, 4 Oct 2022 02:08:48 -0400 Subject: temp mindeps build fix --- src/components/channels.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/components/channels.cpp') diff --git a/src/components/channels.cpp b/src/components/channels.cpp index a5747dc..a36b215 100644 --- a/src/components/channels.cpp +++ b/src/components/channels.cpp @@ -58,7 +58,11 @@ ChannelList::ChannelList() } } +#ifdef WITH_VOICE if (type == RenderType::TextChannel || type == RenderType::DM || type == RenderType::Thread || type == RenderType::VoiceChannel) { +#else + if (type == RenderType::TextChannel || type == RenderType::DM || type == RenderType::Thread) { +#endif const auto id = static_cast(row[m_columns.m_id]); m_signal_action_channel_item_select.emit(id); Abaddon::Get().GetDiscordClient().MarkChannelAsRead(id, [](...) {}); @@ -784,7 +788,11 @@ bool ChannelList::SelectionFunc(const Glib::RefPtr &model, const m_last_selected = m_model->get_path(row); auto type = (*m_model->get_iter(path))[m_columns.m_type]; +#ifdef WITH_VOICE return type == RenderType::TextChannel || type == RenderType::DM || type == RenderType::Thread || type == RenderType::VoiceChannel; +#else + return type == RenderType::TextChannel || type == RenderType::DM || type == RenderType::Thread; +#endif } void ChannelList::AddPrivateChannels() { -- cgit v1.2.3