Skip to content

Commit ea38fdc

Browse files
authored
Replace chopped by mid in download list. (#2089)
1 parent 89f39ef commit ea38fdc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/downloadlist.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ QVariant DownloadList::data(const QModelIndex& index, int role) const
221221
.arg(info->modName)
222222
.arg(m_manager.getModID(index.row()))
223223
.arg(info->version.canonicalString())
224-
.arg(info->description.chopped(4096));
224+
.arg(info->description.mid(0, 4096));
225225
}
226226
return text;
227227
}

0 commit comments

Comments
 (0)