Re-add check for singular queue when removing active download.

This commit is contained in:
Chax
2023-05-17 20:10:23 +02:00
parent 2346accccc
commit 7506282950

View File

@@ -3087,7 +3087,7 @@ Things you can try:
}
private void gamesQueListBox_MouseClick(object sender, MouseEventArgs e)
{
if (gamesQueListBox.SelectedIndex == 0)
if (gamesQueListBox.SelectedIndex == 0 && gamesQueueList.Count == 1)
{
removedownloading = true;
RCLONE.killRclone();