Negative session length -> now session length returns zero

This commit is contained in:
LoudSnorer 2023-06-09 14:44:42 -04:00
parent 1cd449cd9e
commit fc20e59fa1

View File

@ -132,7 +132,8 @@ class Session
//! \brief Return the millisecond length of this session
qint64 length() {
return s_last - s_first;
qint64 duration=s_last - s_first;
return duration<0?0:duration;
// qint64 t;
// int size = m_slices.size();
// if (size == 0) {