Fix for the isFixed function
This commit is contained in:
parent
35ee722f81
commit
43e49dcba1
1 changed files with 1 additions and 1 deletions
|
@ -819,7 +819,7 @@ namespace DTSC {
|
||||||
|
|
||||||
bool Meta::isFixed(){
|
bool Meta::isFixed(){
|
||||||
for (std::map<int,Track>::iterator it = tracks.begin(); it != tracks.end(); it++){
|
for (std::map<int,Track>::iterator it = tracks.begin(); it != tracks.end(); it++){
|
||||||
if (!it->second.keys.size() || !(it->second.keys.rbegin()->getBpos())){
|
if (it->second.keys.size() && !(it->second.keys.rbegin()->getBpos())){
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue