diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index 2bcbd2de3..162256626 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -94,6 +94,7 @@ if(MSVC) /external:anglebrackets /external:W0 "$<$:/O2>" + "$<$:/MP>" ) else() target_compile_options( diff --git a/app/dialog/footageproperties/footageproperties.cpp b/app/dialog/footageproperties/footageproperties.cpp index 3fe507906..484127021 100644 --- a/app/dialog/footageproperties/footageproperties.cpp +++ b/app/dialog/footageproperties/footageproperties.cpp @@ -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(); }