From 8283c116efc6af0a1adc583be38ab711aa9f2cbb Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Mon, 10 Feb 2014 22:08:35 +0000 Subject: [PATCH] Notify that config change when probes are enabled/disabled This fixes 296 --- pv/devinst.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pv/devinst.cpp b/pv/devinst.cpp index c0b87fe2..4480c43f 100644 --- a/pv/devinst.cpp +++ b/pv/devinst.cpp @@ -98,6 +98,7 @@ void DevInst::enable_probe(const sr_probe *probe, bool enable) for (const GSList *p = _sdi->probes; p; p = p->next) if (probe == p->data) { const_cast(probe)->enabled = enable; + config_changed(); return; } -- 2.30.2