Skip to content

Commit

Permalink
Replace chopped by mid in download list. (#2089)
Browse files Browse the repository at this point in the history
  • Loading branch information
Holt59 authored Aug 3, 2024
1 parent 89f39ef commit ea38fdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/downloadlist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit ea38fdc

Please sign in to comment.