aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorvaxerski <[email protected]>2023-01-07 13:38:19 +0100
committervaxerski <[email protected]>2023-01-07 13:38:19 +0100
commit2858e08ce03ab82c3f7a993686f58919a9a62d0d (patch)
tree1ee70a5cd0f4d07654161cc64b3344de1bd6ce88
parent2b248b25c8446621713766360d2e00bd927f5fdf (diff)
downloadHyprland-2858e08ce03ab82c3f7a993686f58919a9a62d0d.tar.gz
Hyprland-2858e08ce03ab82c3f7a993686f58919a9a62d0d.zip
remove color rassert to fix overshot beziers
-rw-r--r--src/helpers/Color.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/helpers/Color.cpp b/src/helpers/Color.cpp
index 788d7bdf..ecd5a33c 100644
--- a/src/helpers/Color.cpp
+++ b/src/helpers/Color.cpp
@@ -4,7 +4,6 @@
CColor::CColor() {}
CColor::CColor(float r, float g, float b, float a) {
- RASSERT(r <= 1.f && g <= 1.f && b <= 1.f && a <= 1.f, "un-normalized color assignment");
this->r = r;
this->g = g;
this->b = b;