UI: Fix bug where auto-config settings wouldn't apply
The radio buttons had been changed so "Streaming" would be selected by default, but it only sets the wizard's "type" to streaming if the user actually clicks the radio button themselves manually, so it would stay set to "Invalid" by mistake, causing settings to not be applied.
This commit is contained in:
@@ -65,7 +65,7 @@ class AutoConfig : public QWizard {
|
||||
Quality recordingQuality = Quality::Stream;
|
||||
Encoder recordingEncoder = Encoder::Stream;
|
||||
Encoder streamingEncoder = Encoder::x264;
|
||||
Type type = Type::Invalid;
|
||||
Type type = Type::Streaming;
|
||||
FPSType fpsType = FPSType::PreferHighFPS;
|
||||
int idealBitrate = 2500;
|
||||
int baseResolutionCX = 1920;
|
||||
|
Reference in New Issue
Block a user