diff -r 4543cc2049af -r d99f46b676b5 QTfrontend/ui/widget/themeprompt.cpp --- a/QTfrontend/ui/widget/themeprompt.cpp Mon Jan 21 13:04:57 2013 -0500 +++ b/QTfrontend/ui/widget/themeprompt.cpp Mon Jan 21 14:07:39 2013 -0500 @@ -81,9 +81,10 @@ { QModelIndex index = themes->index(i, 0); QToolButton * btn = new QToolButton(); + bool dlc = themes->data(index, Qt::UserRole + 2).toBool(); btn->setToolButtonStyle(Qt::ToolButtonTextUnderIcon); btn->setIcon(qVariantValue(themes->data(index, Qt::UserRole))); - btn->setText(themes->data(index, Qt::DisplayRole).toString()); + btn->setText((dlc ? "*" : "") + themes->data(index, Qt::DisplayRole).toString()); btn->setIconSize(QSize(60, 60)); btn->setProperty("themeID", QVariant(i)); btn->setStyleSheet("padding: 2px;");