From e3a9b3824014690a6e8a9b37d317c0e6df6ae43c Mon Sep 17 00:00:00 2001 From: Michael Gregorius Date: Sun, 9 Jul 2023 19:57:53 +0200 Subject: [PATCH] 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. --- plugins/LadspaEffect/LadspaWidgetFactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/LadspaEffect/LadspaWidgetFactory.cpp b/plugins/LadspaEffect/LadspaWidgetFactory.cpp index 22785fa19..786448b4a 100644 --- a/plugins/LadspaEffect/LadspaWidgetFactory.cpp +++ b/plugins/LadspaEffect/LadspaWidgetFactory.cpp @@ -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; }