0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

UI: Guard AutoBetaOptIn as Windows-only

This commit is contained in:
tytan652 2022-11-24 19:18:26 +01:00 committed by Rodney
parent 4681ec732b
commit bc51e15553

View File

@ -2026,7 +2026,7 @@ void OBSBasic::OBSInit()
QMetaObject::invokeMethod(this, "on_autoConfigure_triggered",
Qt::QueuedConnection);
#if OBS_RELEASE_CANDIDATE > 0 || OBS_BETA > 0
#if defined(_WIN32) && (OBS_RELEASE_CANDIDATE > 0 || OBS_BETA > 0)
/* Automatically set branch to "beta" the first time a pre-release build is run. */
if (!config_get_bool(App()->GlobalConfig(), "General",
"AutoBetaOptIn")) {