X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fheader.cpp;h=ba16247a8c8e5609245bc8233943295ff068b32b;hb=b786fcfd36fed2282a6602f26d74c2926957aff6;hp=f8f5b6380514ac2604730ce0a687c0c469fff04a;hpb=569d1e41fbc1be584efdbcdc2c8a01e7af3353ed;p=pulseview.git diff --git a/pv/view/header.cpp b/pv/view/header.cpp index f8f5b63..ba16247 100644 --- a/pv/view/header.cpp +++ b/pv/view/header.cpp @@ -240,7 +240,10 @@ void Header::on_signals_changed() const vector< shared_ptr > traces(_view.get_traces()); BOOST_FOREACH(shared_ptr t, traces) { assert(t); - connect(t.get(), SIGNAL(text_changed()), this, SLOT(update())); + connect(t.get(), SIGNAL(text_changed()), + this, SLOT(update())); + connect(t.get(), SIGNAL(colour_changed()), + this, SLOT(update())); } }