Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

prompt: fix notepat button icon/label overlap

MatrixChunky8 space advance is 2px (proportional), not 4px as the
comment assumed, so 4 leading spaces only reserved 8px while the 13×9
piano icon frame extends to box.x+14. Bumped to 8 spaces so "notepat"
starts at box.x+18 with a 3px gap after the icon.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+4 -3
+4 -3
system/public/aesthetic.computer/disks/prompt.mjs
··· 5928 5928 5929 5929 // 🎹 Notepat shortcut button — sits to the right of the commit button. 5930 5930 // Leading spaces reserve room for the piano icon we draw afterward. 5931 - // MatrixChunky8 = 4px/char + 2px pad ⇒ text starts at box.x + 2 + 4*spaces. 5932 - // Icon frame (13×9) ends at box.x + 15, so 4 spaces (x+18) leaves a 3px gap. 5933 - const notepatLabel = " notepat"; 5931 + // MatrixChunky8 space advance = 2px (proportional), padL = 2px ⇒ text 5932 + // starts at box.x + 2 + 2*spaces. Icon frame (13×9) ends at box.x + 14, 5933 + // so 8 spaces (x+18) leaves a 3px gap after the frame. 5934 + const notepatLabel = " notepat"; 5934 5935 const notepatX = cBox.x + cBox.w + 4; 5935 5936 if (!notepatBtn) { 5936 5937 notepatBtn = new $.ui.TextButtonSmall(notepatLabel, { x: notepatX, y: buttonY });