From bc901a2ed70728b608df8b89e267bf5f19dd9021 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Wed, 28 May 2025 16:55:04 -0700 Subject: [PATCH] Fix issue with RGB textbox positions i use arch btw --- src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 5e471bd..4bc6fb8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -186,7 +186,7 @@ async fn main() { ); let mut bg_red_textbox = TextBox::new( - || screen_width() - 120.0, + || screen_width() - 360.0, || 10.0, || 110.0, || 50.0, @@ -208,7 +208,7 @@ async fn main() { ); let mut bg_blue_textbox = TextBox::new( - || screen_width() - 360.0, + || screen_width() - 120.0, || 10.0, || 110.0, || 50.0, @@ -219,7 +219,7 @@ async fn main() { ); let mut grnd_red_textbox = TextBox::new( - || screen_width() - 120.0, + || screen_width() - 360.0, || 80.0, || 110.0, || 50.0, @@ -241,7 +241,7 @@ async fn main() { ); let mut grnd_blue_textbox = TextBox::new( - || screen_width() - 360.0, + || screen_width() - 120.0, || 80.0, || 110.0, || 50.0,