From 1aef69f9792d8c032269afd6cfb2122b125aea4d Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Sun, 9 Feb 2014 19:09:59 +0000 Subject: [PATCH] Fix some disappearing annotations --- pv/data/decode/rowdata.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pv/data/decode/rowdata.cpp b/pv/data/decode/rowdata.cpp index b1c256a..87da27c 100644 --- a/pv/data/decode/rowdata.cpp +++ b/pv/data/decode/rowdata.cpp @@ -44,7 +44,7 @@ void RowData::get_annotation_subset( for (vector::const_iterator i = _annotations.begin(); i != _annotations.end(); i++) if ((*i).end_sample() > start_sample && - (*i).start_sample() < end_sample) + (*i).start_sample() <= end_sample) dest.push_back(*i); } -- 2.30.2