diff options
author | Petr Mrázek <peterix@gmail.com> | 2019-08-03 05:30:46 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2019-08-03 05:30:46 +0200 |
commit | 7d13e3119801862b9fdf64b11a45c41a64b4fc46 (patch) | |
tree | bf57acec88e4c4f09605603291d5483da2a13ab6 /application/widgets/MCModInfoFrame.cpp | |
parent | 40c9af1a8b2f42f4c90c8d358eac43370c04a227 (diff) | |
download | PrismLauncher-7d13e3119801862b9fdf64b11a45c41a64b4fc46.tar.gz PrismLauncher-7d13e3119801862b9fdf64b11a45c41a64b4fc46.tar.bz2 PrismLauncher-7d13e3119801862b9fdf64b11a45c41a64b4fc46.zip |
NOISSUE refactor Mod a bunch, get rid of dead code
Diffstat (limited to 'application/widgets/MCModInfoFrame.cpp')
-rw-r--r-- | application/widgets/MCModInfoFrame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/widgets/MCModInfoFrame.cpp b/application/widgets/MCModInfoFrame.cpp index d28e2d40..577b32a7 100644 --- a/application/widgets/MCModInfoFrame.cpp +++ b/application/widgets/MCModInfoFrame.cpp @@ -40,7 +40,7 @@ void MCModInfoFrame::updateWithMod(Mod &m) else text = "<a href=\"" + m.homeurl() + "\">" + name + "</a>"; if (!m.authors().isEmpty()) - text += " by " + m.authors(); + text += " by " + m.authors().join(", "); setModText(text); |