X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fheader.cpp;h=77a887f9fe4c9b6b232fa78aaf31cd11b3b5ecd3;hb=95237c18d988245fd5f484b70a481891982f5f37;hp=f8f5b6380514ac2604730ce0a687c0c469fff04a;hpb=569d1e41fbc1be584efdbcdc2c8a01e7af3353ed;p=pulseview.git diff --git a/pv/view/header.cpp b/pv/view/header.cpp index f8f5b63..77a887f 100644 --- a/pv/view/header.cpp +++ b/pv/view/header.cpp @@ -240,7 +240,12 @@ 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(visibility_changed()), + this, SLOT(update())); + connect(t.get(), SIGNAL(text_changed()), + this, SLOT(update())); + connect(t.get(), SIGNAL(colour_changed()), + this, SLOT(update())); } }