fix: typo in color input selector. changed from red to blue (#5982)

This commit is contained in:
zakary2841
2025-02-23 19:57:36 +00:00
committed by GitHub
parent 0d7a05e62f
commit c67801eca5
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ ColorInput::ColorInput(QColor color, QWidget *parent)
initComponent(this->green_, "Green:", [](auto &color, int value) {
color.setGreen(value);
});
initComponent(this->blue_, "Red:", [](auto &color, int value) {
initComponent(this->blue_, "Blue:", [](auto &color, int value) {
color.setBlue(value);
});
initComponent(this->alpha_, "Alpha:", [](auto &color, int value) {