From 960da872bbd583a5b7ddcfdf1a90b31cebebc8e6 Mon Sep 17 00:00:00 2001 From: ouwou <26526779+ouwou@users.noreply.github.com> Date: Sun, 14 Jan 2024 20:25:42 -0500 Subject: fix some criticals --- src/components/channellist/channellisttree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; -- cgit v1.2.3