mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-05-04 04:33:38 -04:00
Fix bug with ColorWheel updating
This commit is contained in:
@@ -857,6 +857,11 @@ void Ui::OpenRGBDevicePage::on_ButtonMagenta_clicked()
|
||||
|
||||
void Ui::OpenRGBDevicePage::on_ColorWheelBox_colorChanged(const QColor color)
|
||||
{
|
||||
if(UpdatingColor)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
UpdatingColor = true;
|
||||
ui->RedSpinBox->setValue(color.red());
|
||||
ui->GreenSpinBox->setValue(color.green());
|
||||
|
||||
Reference in New Issue
Block a user