X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fview.cpp;h=219543338f98af77d22c4db8583cb7aeb0389383;hb=1f3740351a99b9c5cb4cb8a3537e27db9f2e6f60;hp=6970ec39adb49945f8dd292567e6ce5b32b03ed7;hpb=0fc664a99e0d9a444e593123d1db7a47b1657366;p=pulseview.git diff --git a/pv/view/view.cpp b/pv/view/view.cpp index 6970ec39..21954333 100644 --- a/pv/view/view.cpp +++ b/pv/view/view.cpp @@ -92,7 +92,9 @@ View::View(SigSession &session, QWidget *parent) : connect(&_session, SIGNAL(signals_changed()), this, SLOT(signals_changed())); - connect(&_session, SIGNAL(data_updated()), + connect(&_session, SIGNAL(data_received()), + this, SLOT(data_updated())); + connect(&_session, SIGNAL(frame_ended()), this, SLOT(data_updated())); connect(_cursors.first().get(), SIGNAL(time_changed()), @@ -120,6 +122,8 @@ View::View(SigSession &session, QWidget *parent) : _viewport->installEventFilter(this); _ruler->installEventFilter(this); _header->installEventFilter(this); + + signals_changed(); } SigSession& View::session()