From 79b7e61f0a8ddf084a41e8d136584b7c32bbcc07 Mon Sep 17 00:00:00 2001 From: tytan652 Date: Sat, 25 Mar 2023 21:26:37 +0100 Subject: [PATCH] UI: Fix issue from stream settings Qt slots refactor 5a40934 refactored slots around services but a on_service_currentIndexChanged() was not replaced by ServiceChanged(). The latter contains the code that was in the former before the refactor. https://github.com/obsproject/obs-studio/commit/5a409347d5bf7dec50c41641660a131c265fb4ad --- UI/window-basic-settings-stream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/window-basic-settings-stream.cpp b/UI/window-basic-settings-stream.cpp index ec661bd2c..fab2c9c36 100644 --- a/UI/window-basic-settings-stream.cpp +++ b/UI/window-basic-settings-stream.cpp @@ -170,7 +170,7 @@ void OBSBasicSettings::LoadStream1Settings() ui->key->setText(key); lastService.clear(); - on_service_currentIndexChanged(0); + ServiceChanged(); UpdateKeyLink(); UpdateMoreInfoLink();