X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fruler.cpp;h=09c85c6451c37a3ea888783e949f2dd2937fe0d3;hb=b2a53645cfc81baae2bec80aaf6f10e69172d257;hp=654e6f45caea7652ae3ff5246492606833d42e82;hpb=c23b29d67ed68c1a899000bf0049056fe9f51a62;p=pulseview.git diff --git a/pv/view/ruler.cpp b/pv/view/ruler.cpp index 654e6f4..09c85c6 100644 --- a/pv/view/ruler.cpp +++ b/pv/view/ruler.cpp @@ -58,6 +58,14 @@ Ruler::Ruler(View &parent) : this, SLOT(hover_point_changed())); } +void Ruler::clear_selection() +{ + CursorPair &cursors = _view.cursors(); + cursors.first().select(false); + cursors.second().select(false); + update(); +} + QString Ruler::format_time(double t, unsigned int prefix, unsigned int precision) { @@ -194,6 +202,8 @@ void Ruler::mousePressEvent(QMouseEvent *e) rect()).contains(e->pos())) _grabbed_marker = &cursors.second(); } + + selection_changed(); } }