aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/hyprerror
diff options
context:
space:
mode:
authorvaxerski <[email protected]>2023-01-22 16:45:00 +0100
committervaxerski <[email protected]>2023-01-22 16:45:00 +0100
commiteb7927d278405569858c106568f5b0856eca701a (patch)
tree157af5326b20266ef1cb84e263977c92771acc29 /src/hyprerror
parent8f57db28f7a2376a2e43bef79e94cc844931e0a6 (diff)
downloadHyprland-eb7927d278405569858c106568f5b0856eca701a.tar.gz
Hyprland-eb7927d278405569858c106568f5b0856eca701a.zip
fix color typo in hyprerror
Diffstat (limited to 'src/hyprerror')
-rw-r--r--src/hyprerror/HyprError.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hyprerror/HyprError.cpp b/src/hyprerror/HyprError.cpp
index aff94a2d..5ee1d919 100644
--- a/src/hyprerror/HyprError.cpp
+++ b/src/hyprerror/HyprError.cpp
@@ -61,7 +61,7 @@ void CHyprError::createQueued() {
cairo_arc(CAIRO, X + RADIUS, Y + RADIUS, RADIUS, 180 * DEGREES, 270 * DEGREES);
cairo_close_path(CAIRO);
- cairo_set_source_rgba(CAIRO, m_cQueued.r, m_cQueued.g, m_cQueued.g, m_cQueued.a);
+ cairo_set_source_rgba(CAIRO, m_cQueued.r, m_cQueued.g, m_cQueued.b, m_cQueued.a);
cairo_fill_preserve(CAIRO);
cairo_set_source_rgba(CAIRO, 0, 0, 0, 1);
cairo_set_line_width(CAIRO, 2);