From 075c35612264c247760a36bc1d4d8796f0f28cfa Mon Sep 17 00:00:00 2001 From: SonOfGib Date: Tue, 7 Jan 2025 18:06:00 -0500 Subject: [PATCH] Wireless projection should default to true. * When ini file was not present, the default value was set to false instead of true. --- src/autoapp/Configuration/Configuration.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/autoapp/Configuration/Configuration.cpp b/src/autoapp/Configuration/Configuration.cpp index 51dacbc..da68e4c 100644 --- a/src/autoapp/Configuration/Configuration.cpp +++ b/src/autoapp/Configuration/Configuration.cpp @@ -187,6 +187,7 @@ void Configuration::reset() musicAudioChannelEnabled_ = true; speechAudiochannelEnabled_ = true; audioOutputBackendType_ = AudioOutputBackendType::QT; + wirelessProjectionEnabled_ = true; } void Configuration::save()