Set mana curve bar color to grey for visibility.

This commit is contained in:
Lukas Brübach 2025-05-05 23:22:58 +02:00
parent faf239b55f
commit 3accc588c9

View file

@ -91,7 +91,7 @@ void ManaCurveWidget::updateDisplay()
// Add new widgets to the layout in sorted order // Add new widgets to the layout in sorted order
for (const auto &entry : sortedManaCurve) { for (const auto &entry : sortedManaCurve) {
BarWidget *barWidget = BarWidget *barWidget =
new BarWidget(QString::number(entry.first), entry.second, highestEntry, QColor(11, 11, 11), this); new BarWidget(QString::number(entry.first), entry.second, highestEntry, QColor(122, 122, 122), this);
barLayout->addWidget(barWidget); barLayout->addWidget(barWidget);
} }