From 57d8f5b4b5fefdcaaebe23b0d6345b14398d84d4 Mon Sep 17 00:00:00 2001 From: Aaron Murgatroyd Date: Tue, 22 Oct 2024 02:54:48 +1000 Subject: [PATCH] Fix repeated dialog popup notifying of new updates when there aren't any if you have bundled updates with external updates --- src/Ryujinx.UI.Common/App/ApplicationLibrary.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Ryujinx.UI.Common/App/ApplicationLibrary.cs b/src/Ryujinx.UI.Common/App/ApplicationLibrary.cs index c464cb0a..fbe05ed1 100644 --- a/src/Ryujinx.UI.Common/App/ApplicationLibrary.cs +++ b/src/Ryujinx.UI.Common/App/ApplicationLibrary.cs @@ -986,6 +986,10 @@ namespace Ryujinx.UI.App.Common var shouldSelect = !currentlySelected.HasValue || currentlySelected.Value.TitleUpdate.Version < update.Version; _titleUpdates.AddOrUpdate((update, shouldSelect)); + + if (currentlySelected.HasValue && shouldSelect) + _titleUpdates.AddOrUpdate((currentlySelected.Value.TitleUpdate, false)); + SaveTitleUpdatesForGame(update.TitleIdBase); numUpdatesLoaded++;