Skip to content

Commit 4ff7f4a

Browse files
committed
Delete if result = true -> fix
1 parent 3afea59 commit 4ff7f4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MangaPrinter.WpfGUI/MainWindow.xaml.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ private void mnuQuickDelete_Click(object sender, RoutedEventArgs e)
878878
if (dlg.ShowDialog() ?? false)
879879
{
880880
pagesToInspect
881-
.Where(p => !p.Result)
881+
.Where(p => p.Result==true)
882882
.ForEach(p => p.Page.Chapter.Pages.Remove(p.Page));
883883
}
884884
}

0 commit comments

Comments
 (0)