added ability to disable drop-to-replace and fixed tooltip frame rate bug

This commit is contained in:
itsmattkc
2018-11-14 21:41:37 +11:00
parent 1c3fc815e3
commit 67efc652a7
7 changed files with 27 additions and 3 deletions
+1 -1
View File
@@ -1648,7 +1648,7 @@ void update_footage_tooltip(QTreeWidgetItem *item, Media *media, QString error)
if (i > 0) {
tooltip += ", ";
}
if (media->video_tracks.at(i)->video_interlacing != VIDEO_PROGRESSIVE) {
if (media->video_tracks.at(i)->video_interlacing == VIDEO_PROGRESSIVE) {
tooltip += QString::number(media->video_tracks.at(i)->video_frame_rate);
} else {
tooltip += QString::number(media->video_tracks.at(i)->video_frame_rate * 2);