From c67801eca588a272ea8cfb47e096d39b0499f9c8 Mon Sep 17 00:00:00 2001 From: zakary2841 <26402356+zakary2841@users.noreply.github.com> Date: Sun, 23 Feb 2025 19:57:36 +0000 Subject: [PATCH] fix: typo in color input selector. changed from red to blue (#5982) --- CHANGELOG.md | 1 + src/widgets/helper/color/ColorInput.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0ff89c0..a9402312 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ - Bugfix: Fixed search in emote popup not always working correctly. (#5946) - Bugfix: Fixed channel point redemptions with messages not showing up if PubSub is disconnected. (#5948) - Bugfix: Fixed the input font not immediately updating when zooming in/out. (#5960) +- Bugfix: Fixed color input thinking blue is also red. (#5982) - Dev: Subscriptions to PubSub channel points redemption topics now use no auth token, making it continue to work during PubSub shutdown. (#5947) - Dev: Add initial experimental EventSub support. (#5837, #5895, #5897, #5904, #5910, #5903, #5915, #5916, #5930, #5935, #5932, #5943, #5952, #5953, #5968, #5973, #5974, #5980) - Dev: Remove unneeded platform specifier for toasts. (#5914) diff --git a/src/widgets/helper/color/ColorInput.cpp b/src/widgets/helper/color/ColorInput.cpp index 17f802bf..3ccd225a 100644 --- a/src/widgets/helper/color/ColorInput.cpp +++ b/src/widgets/helper/color/ColorInput.cpp @@ -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) {