Fix first usable stream being selected

Footage Properties should always select the first usable stream. Commit 1fa3f4e
didn't quite fix this with all footage. This should.
This commit is contained in:
Thomas Wilshaw
2020-05-05 22:32:11 +01:00
parent 057cfe4296
commit df97a86dbc
@@ -109,7 +109,7 @@ FootagePropertiesDialog::FootagePropertiesDialog(QWidget *parent, Footage *foota
// Auto-select first item that actually has properties
if (first_usable_stream >= 0) {
track_list->item(first_usable_stream)->setSelected(true);
track_list->setCurrentRow(first_usable_stream);
}
track_list->setFocus();
}