1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:38:10 +00:00

LibGUI: Make color picker opacity sliders react to the chosen color

This commit is contained in:
networkException 2023-01-01 02:16:55 +01:00 committed by Sam Atkins
parent f828bf6479
commit c8f9bfe026

View file

@ -291,6 +291,7 @@ void ColorPicker::build_ui_custom(Widget& root_container)
return;
}
m_alpha->set_base_color(color);
m_color = color;
update_color_widgets();
};