| 1233 | } |
| 1234 | |
| 1235 | QVariant PluginList::backgroundData(const QModelIndex& modelIndex) const |
| 1236 | { |
| 1237 | const int index = modelIndex.row(); |
| 1238 | |
| 1239 | if (m_ESPs[index].modSelected) { |
| 1240 | return Settings::instance().colors().pluginListContained(); |
| 1241 | } |
| 1242 | |
| 1243 | return {}; |
| 1244 | } |
| 1245 | |
| 1246 | QVariant PluginList::fontData(const QModelIndex& modelIndex) const |
| 1247 | { |
nothing calls this directly
no test coverage detected