summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2024-01-14 20:25:42 -0500
committerouwou <26526779+ouwou@users.noreply.github.com>2024-01-14 20:25:42 -0500
commit960da872bbd583a5b7ddcfdf1a90b31cebebc8e6 (patch)
treea0268c12dc6f65e68b0581c67ca1b300d2dd8646 /src
parentf38a893e441ca47ff5f5ca50995df567cac00f63 (diff)
downloadabaddon-portaudio-960da872bbd583a5b7ddcfdf1a90b31cebebc8e6.tar.gz
abaddon-portaudio-960da872bbd583a5b7ddcfdf1a90b31cebebc8e6.zip
fix some criticals
Diffstat (limited to 'src')
-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];