X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftrace.cpp;h=ee0a4f0e921630b986a090bbdca494fb3849010f;hp=f7e7ebf25b8ec00a351bb415f7fe696de155e8b6;hb=796e136093befc76f6c223afff1c1221182cf5dd;hpb=e081bf3d864d5662716668d6b4adcb0871d11dae diff --git a/pv/view/trace.cpp b/pv/view/trace.cpp index f7e7ebf2..ee0a4f0e 100644 --- a/pv/view/trace.cpp +++ b/pv/view/trace.cpp @@ -91,6 +91,16 @@ bool Trace::is_draggable() const return (cursor_pos.x() <= view->header_size().width()); } +void Trace::select(bool select) +{ + // Trace can only be selected if the mouse cursor is in the header area; + // as is_draggable() checks the same thing, we re-use it here + if (is_draggable() && select) + selected_ = true; + else + selected_ = false; +} + void Trace::paint_label(QPainter &p, const QRect &rect, bool hover) { const int y = get_visual_y();