From 0c7009b9735a2907ebcec395a5d450632108e9d1 Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Tue, 31 Mar 2020 16:34:55 -0500 Subject: [PATCH] Update color wheel when choosing an LED from the LED selection box --- qt/OpenRGBDevicePage.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qt/OpenRGBDevicePage.cpp b/qt/OpenRGBDevicePage.cpp index 0b9bd6e7..56090dac 100644 --- a/qt/OpenRGBDevicePage.cpp +++ b/qt/OpenRGBDevicePage.cpp @@ -177,6 +177,7 @@ void Ui::OpenRGBDevicePage::on_LEDBox_currentIndexChanged(int index) ui->BlueSpinBox->setValue(RGBGetBValue(color)); UpdatingColor = false; updateHSV(); + updateWheel(); } break; @@ -192,6 +193,7 @@ void Ui::OpenRGBDevicePage::on_LEDBox_currentIndexChanged(int index) ui->BlueSpinBox->setValue(RGBGetBValue(color)); UpdatingColor = false; updateHSV(); + updateWheel(); } break; }