From 87df7c85cabf405044f65723778166156e375e64 Mon Sep 17 00:00:00 2001 From: Adrian Edwards <17362949+MoralCode@users.noreply.github.com> Date: Sun, 18 Oct 2020 19:05:05 -0700 Subject: [PATCH] update comments --- discover_overlay/text_settings.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/discover_overlay/text_settings.py b/discover_overlay/text_settings.py index 0084431..96af101 100644 --- a/discover_overlay/text_settings.py +++ b/discover_overlay/text_settings.py @@ -27,12 +27,14 @@ class TextSettingsWindow(SettingsWindow): self.create_gui() def update_channel_model(self): + # potentially organize channels by their group/parent_id + # https://discord.com/developers/docs/resources/channel#channel-object-channel-structure c_model = Gtk.ListStore(str, bool) self.channel_lookup = ["0"] for guild in self.guild_list(): guild_id, guild_name = guild - # if no guild is specified, poulate channel list with every channel from each guild + # if no guild is specified, populate channel list with every channel from each guild if self.guild == GUILD_DEFAULT_VALUE: c_model.append([guild_name, False]) for c in self.list_channels_keys: