X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fheader.cpp;h=ba16247a8c8e5609245bc8233943295ff068b32b;hb=91e8bf08c9799cb1041d26bf2ff6b67abf9a420b;hp=f8f5b6380514ac2604730ce0a687c0c469fff04a;hpb=a52fcc7685afca7c003c64150399262fd362de00;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())); } }