summaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2021-07-26 00:03:36 -0400
committerouwou <26526779+ouwou@users.noreply.github.com>2021-07-26 00:03:36 -0400
commit30391836d0bf25732ca5b1bbd46f6e2c84608b5e (patch)
treecc2abb8be68ccbb35428f2ffab7afc9f14811c9d /components
parent5bf48fa6c0650d67dca2a45d05ec1570ebe236ea (diff)
downloadabaddon-portaudio-30391836d0bf25732ca5b1bbd46f6e2c84608b5e.tar.gz
abaddon-portaudio-30391836d0bf25732ca5b1bbd46f6e2c84608b5e.zip
add missing channel sign
Diffstat (limited to 'components')
-rw-r--r--components/channels.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/channels.cpp b/components/channels.cpp
index 5db3b7d..c59418a 100644
--- a/components/channels.cpp
+++ b/components/channels.cpp
@@ -194,7 +194,7 @@ void ChannelList::UpdateChannel(Snowflake id) {
auto channel_row = *m_model->append(parent->children());
channel_row[m_columns.m_type] = RenderType::TextChannel;
channel_row[m_columns.m_id] = channel->ID;
- channel_row[m_columns.m_name] = Glib::Markup::escape_text(*channel->Name);
+ channel_row[m_columns.m_name] = "#" + Glib::Markup::escape_text(*channel->Name);
channel_row[m_columns.m_nsfw] = channel->NSFW();
if (is_orphan)
channel_row[m_columns.m_sort] = *channel->Position + OrphanChannelSortOffset;