mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-06-12 13:17:41 +02:00
Append [installed] to installed mods
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
This commit is contained in:
@ -68,6 +68,9 @@ void ProjectItemDelegate::paint(QPainter* painter, const QStyleOptionViewItem& o
|
||||
{ // Title painting
|
||||
auto title = index.data(UserDataTypes::TITLE).toString();
|
||||
|
||||
if (index.data(UserDataTypes::INSTALLED).toBool())
|
||||
title += " [installed]";
|
||||
|
||||
painter->save();
|
||||
|
||||
auto font = opt.font;
|
||||
|
Reference in New Issue
Block a user