Skip to content

v0.3.15

Choose a tag to compare

@zhuchenxi113 zhuchenxi113 released this 26 Jun 03:28

修复

  • 修复菜单栏详情行百分比对齐问题:当剩余额度为个位数(如 7%)时,重置时间列与两位数行不对齐。根因是 {pct:>3} 用 ASCII 空格填充,但 ASCII 空格比数字字符窄,导致 tab stop 提前耗尽。改用等宽的 U+2007 Figure Space 填充后,所有行的重置时间列对齐一致。

Fix

  • Fix misaligned reset-time column in menu bar detail rows when remaining quota is a single digit (e.g. 7%). ASCII space padding in {pct:>3} was narrower than a digit in SF Pro, causing the tab stop to be hit at a different pixel position. Replaced with U+2007 figure space (digit-width) so all rows align correctly.