Skip to content

Commit

Permalink
UI: Enable multitrack video controls on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
lexano-ivs committed Nov 20, 2024
1 parent 7d45877 commit 280a600
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion UI/window-basic-settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5616,7 +5616,10 @@ void OBSBasicSettings::UpdateMultitrackVideo()
ui->enableMultitrackVideo->setChecked(false);
}

#ifndef _WIN32
// Enhanced Broadcasting works on Windows and Linux. For other
// OS variants, only enable the GUI controls if developer mode
// was invoked.
#if (!defined(__linux__) && !defined(_WIN32))
available = available && MultitrackVideoDeveloperModeEnabled();
#endif

Expand Down

0 comments on commit 280a600

Please sign in to comment.