Skip to content

Commit

Permalink
library/basesqltablemodel: Reduce track color background opacity to 1…
Browse files Browse the repository at this point in the history
…2.5%
  • Loading branch information
Holzhaus committed Mar 8, 2020
1 parent 790bf65 commit 5325a6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/library/basesqltablemodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ QVariant BaseSqlTableModel::data(const QModelIndex& index, int role) const {
QColor color = mixxx::RgbColor::toQColor(
mixxx::RgbColor::fromQVariant(getBaseValue(colorIndex, role)));
if (color.isValid()) {
color.setAlpha(64); // Make this 25% opaque
color.setAlpha(32); // Make this 12.5% opaque
value = QBrush(color);
}
}
Expand Down

0 comments on commit 5325a6c

Please sign in to comment.