diff options
| author | Silarn <jrim@rimpo.org> | 2020-01-09 18:06:07 -0600 |
|---|---|---|
| committer | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2023-09-21 17:12:17 -0500 |
| commit | 375b8e613eda4be77f01eb9a079caa741b958112 (patch) | |
| tree | c751d31edbab05f35deef32559687753ea6e3414 /src/categoriesdialog.cpp | |
| parent | 2f7478f8fc3ab047eaab44cd666bcc06bf15a127 (diff) | |
Implement drag & drop nexus cat assignment
Diffstat (limited to 'src/categoriesdialog.cpp')
| -rw-r--r-- | src/categoriesdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/categoriesdialog.cpp b/src/categoriesdialog.cpp index a94484ae..3f4ea034 100644 --- a/src/categoriesdialog.cpp +++ b/src/categoriesdialog.cpp @@ -226,7 +226,7 @@ void CategoriesDialog::fillTable() itemData.insert(itemData.length(), newData); QStringList names; for (auto cat : itemData) { - names.append(categories->getCategoryName(categories->resolveNexusID(cat.toList()[1].toInt()))); + names.append(cat.toList()[0].toString()); } item->setData(Qt::UserRole, itemData); item->setData(Qt::DisplayRole, names.join(", ")); |
