From 994ef64ef0cecd69898ab81432e5c5efef7ef97b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 30 Oct 2013 09:33:07 +0000 Subject: [PATCH] Fix erroneous overlap of adjacent content. --- src/lib/content.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/content.h b/src/lib/content.h index c066c61e0..626e270bd 100644 --- a/src/lib/content.h +++ b/src/lib/content.h @@ -103,7 +103,7 @@ public: } Time end () const { - return position() + length_after_trim(); + return position() + length_after_trim() - 1; } Time length_after_trim () const; -- 2.30.2