Use "yellow" LEDs for bool parameters

Use "yellow" LEDs (which are actually blue) for dynamically added bool
parameters so that the dialog is consistent with regards to the LED
colors. The "Link Channels" button also uses a "yellow" LED.
This commit is contained in:
Michael Gregorius
2023-07-09 19:57:53 +02:00
parent 660f2e96b3
commit e3a9b38240

View File

@@ -55,7 +55,7 @@ QWidget * LadspaWidgetFactory::createWidget(LadspaControl * ladspaControl, QWidg
case TOGGLED:
{
LedCheckBox * toggle = new LedCheckBox(
name, parent, QString(), LedCheckBox::Green, false);
name, parent, QString(), LedCheckBox::Yellow, false);
toggle->setModel(ladspaControl->toggledModel());
return toggle;
}