correct duration/rate in project explorer

This commit is contained in:
itsmattkc
2019-09-26 16:00:21 +10:00
parent 0e46ff02d7
commit ce20dc159e
10 changed files with 106 additions and 6 deletions
+2 -4
View File
@@ -131,11 +131,9 @@ QVariant ProjectViewModel::data(const QModelIndex &index, int role) const
case kName:
return internal_item->name();
case kDuration:
// FIXME Return actual information
return "00:00:00;00";
return internal_item->duration();
case kRate:
// FIXME Return actual information
return "29.97 FPS";
return internal_item->rate();
}
}
break;