aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/widgets/InfoFrame.cpp
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-09-08 11:54:04 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2022-09-20 10:26:15 +0200
commitebbcc9f6da37d0a28f171dfef7d025354056b0e4 (patch)
tree03f63b04adfdd2893354d55ca4f668ca4345cb81 /launcher/ui/widgets/InfoFrame.cpp
parent23fc453fae7091d6ef8176b3ba265e9242ebd540 (diff)
downloadPrismLauncher-ebbcc9f6da37d0a28f171dfef7d025354056b0e4.tar.gz
PrismLauncher-ebbcc9f6da37d0a28f171dfef7d025354056b0e4.tar.bz2
PrismLauncher-ebbcc9f6da37d0a28f171dfef7d025354056b0e4.zip
fix: actually render color codes for texture packs
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/ui/widgets/InfoFrame.cpp')
-rw-r--r--launcher/ui/widgets/InfoFrame.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/widgets/InfoFrame.cpp b/launcher/ui/widgets/InfoFrame.cpp
index bb895c9b..f78dbe16 100644
--- a/launcher/ui/widgets/InfoFrame.cpp
+++ b/launcher/ui/widgets/InfoFrame.cpp
@@ -155,7 +155,7 @@ void InfoFrame::updateWithResourcePack(ResourcePack& resource_pack)
void InfoFrame::updateWithTexturePack(TexturePack& texture_pack)
{
setName(texture_pack.name());
- setDescription(texture_pack.description());
+ setDescription(renderColorCodes(texture_pack.description()));
setImage(texture_pack.image({64, 64}));
}