diff --git a/gui.py b/gui.py index a613c4e..36bbe3c 100644 --- a/gui.py +++ b/gui.py @@ -708,6 +708,7 @@ class ChannelList: iids = self._table.get_children() self._table.delete(*iids) self._channel_map.clear() + self.shrink() def display(self, channel: Channel, *, add: bool = False): # priority diff --git a/twitch.py b/twitch.py index 01a27e6..02c3b0d 100644 --- a/twitch.py +++ b/twitch.py @@ -322,7 +322,6 @@ class Twitch: # set our new channel list channels.clear() self.gui.channels.clear() - self.gui.channels.shrink() for channel in ordered_channels: channels[channel.id] = channel channel.display(add=True)