From b69538de858bfe4cb46733d43434f0402d7751d3 Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Fri, 3 Jul 2026 14:51:12 +0200 Subject: [PATCH] chore(badge): adjust badge icon sizing constants The badge icon rendering was tweaked by slightly reducing the radius and scale constants. This helps align the icon proportions and spacing for a cleaner visual result. --- src-tauri/src/badge.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-tauri/src/badge.rs b/src-tauri/src/badge.rs index 9fa0abc..7a57acb 100644 --- a/src-tauri/src/badge.rs +++ b/src-tauri/src/badge.rs @@ -98,8 +98,8 @@ fn render_badge_icon(ahead: u32, behind: u32) -> Option> { } const SIZE: usize = 64; - const RADIUS: f32 = 27.0; - const SCALE: usize = 6; + const RADIUS: f32 = 26.0; + const SCALE: usize = 5; const MARGIN: f32 = 2.0; let mut rgba = vec![0u8; SIZE * SIZE * 4];