From c842148b9a0b4fb62e288af2eb0f4f4ab99202ff Mon Sep 17 00:00:00 2001 From: Simran Brucherseifer Date: Wed, 29 Apr 2020 11:15:09 +0200 Subject: [PATCH 1/2] MSVC: Build with Multiple Processes (CMAKE_CXX_FLAGS /MP) --- app/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index 0c9c4661f..7ca786649 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -92,6 +92,7 @@ if(MSVC) /external:anglebrackets /external:W0 "$<$:/O2>" + "$<$:/MP>" ) else() target_compile_options( From df97a86dbcf5a1f2a860ed485606bcee98aeda99 Mon Sep 17 00:00:00 2001 From: Thomas Wilshaw Date: Tue, 5 May 2020 22:32:11 +0100 Subject: [PATCH 2/2] 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. --- app/dialog/footageproperties/footageproperties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }