Skip to content

Commit

Permalink
UI: Fix What's New increment settings mismatch
Browse files Browse the repository at this point in the history
The InfoIncrement key in the application config everywhere else. This
mismatch caused the "What's New" menu entry to stop functioning.
  • Loading branch information
gxalpha authored and RytoEX committed Oct 3, 2024
1 parent 4dd3cf6 commit ad5040c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/window-basic-main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit ad5040c

Please sign in to comment.