Skip to content

Commit

Permalink
Update effect combobox header from 'Lighting' to 'Effect'
Browse files Browse the repository at this point in the history
Should describe it better, and remove a few extra mentions of 'Lighting'
in the UI.
  • Loading branch information
z3ntu committed May 4, 2024
1 parent fc7513c commit 32a8896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/devicewidget/ledwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ LedWidget::LedWidget(QWidget *parent, libopenrazer::Led *led)
auto *verticalLayout = new QVBoxLayout(this);

// Set appropriate text
QLabel *lightingLocationLabel = new QLabel(tr("Lighting %1").arg(libopenrazer::ledIdToStringTable.value(led->getLedId(), "error")));
QLabel *lightingLocationLabel = new QLabel(tr("Effect %1").arg(libopenrazer::ledIdToStringTable.value(led->getLedId(), "error")));

auto *lightingHBox = new QHBoxLayout();
verticalLayout->addWidget(lightingLocationLabel);
Expand Down

0 comments on commit 32a8896

Please sign in to comment.