summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/channellist/channellisttree.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/channellist/channellisttree.cpp b/src/components/channellist/channellisttree.cpp
index cbfc8bb..720fdd2 100644
--- a/src/components/channellist/channellisttree.cpp
+++ b/src/components/channellist/channellisttree.cpp
@@ -84,7 +84,7 @@ ChannelListTree::ChannelListTree()
});
m_filter_model->set_visible_func([this](const Gtk::TreeModel::const_iterator &iter) -> bool {
- if (!m_classic) return true;
+ if (!m_classic || m_updating_listing) return true;
const RenderType type = (*iter)[m_columns.m_type];