From 9e66799abf1e99cb507966e1780dd25fd7887df4 Mon Sep 17 00:00:00 2001 From: Al12rs Date: Sun, 28 Oct 2018 16:15:27 +0100 Subject: Fixed Separators not getting deleted while deleting multiple selected items. --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mainwindow.cpp') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 438ba037..3b2dfbb2 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -2367,7 +2367,7 @@ void MainWindow::removeMod_clicked() continue; } mods += "
  • " + name + "
  • "; - modNames.append(name); + modNames.append(ModInfo::getByIndex(idx.data(Qt::UserRole + 1).toInt())->name()); } if (QMessageBox::question(this, tr("Confirm"), tr("Remove the following mods?
    ").arg(mods), -- cgit v1.3.1