projects
/
pulseview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d01c943
)
Notify that config change when probes are enabled/disabled
author
Joel Holdsworth
<joel@airwebreathe.org.uk>
Mon, 10 Feb 2014 22:08:35 +0000
(22:08 +0000)
committer
Joel Holdsworth
<joel@airwebreathe.org.uk>
Tue, 11 Feb 2014 21:45:57 +0000
(21:45 +0000)
This fixes 296
pv/devinst.cpp
patch
|
blob
|
history
diff --git
a/pv/devinst.cpp
b/pv/devinst.cpp
index c0b87fe243414bf5167f7af7f49aed527367d124..4480c43fdb995234cb516cd1127ab632e4949ffb 100644
(file)
--- 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<sr_probe*>(probe)->enabled = enable;
+ config_changed();
return;
}