diff options
| author | Mikaƫl Capelle <capelle.mikael@gmail.com> | 2024-08-03 13:37:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-03 13:37:39 +0200 |
| commit | ea38fdc6ce6cc8af2b3c464919bd07d42e99aa8b (patch) | |
| tree | c596278b76c5ddf039ff14bd84467a3f76358490 | |
| parent | 89f39ef20038b3fdba24da8391225043fd23f763 (diff) | |
Replace chopped by mid in download list. (#2089)
| -rw-r--r-- | src/downloadlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/downloadlist.cpp b/src/downloadlist.cpp index e38d13fa..b461be50 100644 --- a/src/downloadlist.cpp +++ b/src/downloadlist.cpp @@ -221,7 +221,7 @@ QVariant DownloadList::data(const QModelIndex& index, int role) const .arg(info->modName) .arg(m_manager.getModID(index.row())) .arg(info->version.canonicalString()) - .arg(info->description.chopped(4096)); + .arg(info->description.mid(0, 4096)); } return text; } |
