mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Negative session length -> now session length returns zero
This commit is contained in:
parent
1cd449cd9e
commit
fc20e59fa1
@ -132,7 +132,8 @@ class Session
|
|||||||
|
|
||||||
//! \brief Return the millisecond length of this session
|
//! \brief Return the millisecond length of this session
|
||||||
qint64 length() {
|
qint64 length() {
|
||||||
return s_last - s_first;
|
qint64 duration=s_last - s_first;
|
||||||
|
return duration<0?0:duration;
|
||||||
// qint64 t;
|
// qint64 t;
|
||||||
// int size = m_slices.size();
|
// int size = m_slices.size();
|
||||||
// if (size == 0) {
|
// if (size == 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user