Skip to content

Commit

Permalink
WColorPicker: Fix code formatting issue in WColorGridButton constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
cr7pt0gr4ph7 committed Oct 31, 2024
1 parent a5ae64e commit 5ad242b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/widget/wcolorpicker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ WColorGridButton::WColorGridButton(const mixxx::RgbColor::optional_t& color,
int row,
int column,
QWidget* parent)
: QPushButton(parent), m_color(color), m_row(row), m_column(column) {
: QPushButton(parent),
m_color(color),
m_row(row),
m_column(column) {
if (color) {
// Set the background color of the button.
// This can't be overridden in skin stylesheets.
Expand Down

0 comments on commit 5ad242b

Please sign in to comment.