From ad5040cfd2b872d6ef8ea9351fc953327151a04a Mon Sep 17 00:00:00 2001 From: gxalpha Date: Fri, 27 Sep 2024 13:50:53 +0200 Subject: [PATCH] UI: Fix What's New increment settings mismatch The InfoIncrement key in the application config everywhere else. This mismatch caused the "What's New" menu entry to stop functioning. --- UI/window-basic-main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/window-basic-main.cpp b/UI/window-basic-main.cpp index a8dc51141d06f7..e7db3d765d65b8 100644 --- a/UI/window-basic-main.cpp +++ b/UI/window-basic-main.cpp @@ -8529,7 +8529,7 @@ void OBSBasic::on_actionShowWhatsNew_triggered() if (!cef) return; - config_set_int(App()->GetUserConfig(), "General", "InfoIncrement", -1); + config_set_int(App()->GetAppConfig(), "General", "InfoIncrement", -1); WhatsNewInfoThread *wnit = new WhatsNewInfoThread(); connect(wnit, &WhatsNewInfoThread::Result, this,