git.lucas.co / cce-system-interface
system settings
git clone https://git.lucas.co/cce-system-interface.git

commit15c929db60cef9beabdc68244afb99ffd594930a
parentda3f01141f
authorLucas Galante <[email protected]>
date2026-07-28 23:10
feat: rounder section-well corners (radius 13 -> 20)

Co-Authored-By: Claude Fable 5 <[email protected]>

 src/main.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.rs b/src/main.rs
index 7206054..f500e25 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -296,7 +296,7 @@ impl cce_ui::engine::Application for SystemInterface {
                 height: (height - self.header_height - self.status_height
                     - if self.search_open { 42.0 } else { 0.0 }).max(0.0),
             };
-            let r = 13.0f32;
+            let r = 20.0f32;
             let scroll_y = self.scroll_y;
             pc.clip(view, |pc| {
                 for &((cx, cy, cw, ch), tab) in &self.page_reliefs {