UI: Fix negative space savings in XCI trimmer

This commit is contained in:
Evan Husted
2024-12-26 00:55:04 -06:00
committed by KeatonTheBot
parent 8726331a10
commit c8af900b10
3 changed files with 5 additions and 4 deletions
@@ -361,7 +361,7 @@ namespace Ryujinx.Ava.UI.ViewModels
value = _processingApplication.Value with { PercentageProgress = null };
if (value.HasValue)
_displayedXCIFiles.ReplaceWith(value.Value);
_displayedXCIFiles.ReplaceWith(value);
_processingApplication = value;
OnPropertyChanged();