From 8add27715c2555ff204c69b275c595fa9b191b74 Mon Sep 17 00:00:00 2001 From: RKBoss6 Date: Mon, 30 Jun 2025 20:40:56 -0400 Subject: [PATCH] Change focused color --- apps/modclock/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/modclock/app.js b/apps/modclock/app.js index dd8f893bc..3ad72edfb 100644 --- a/apps/modclock/app.js +++ b/apps/modclock/app.js @@ -156,9 +156,9 @@ if(showInlineClkInfo){ var midx = options.x+options.w/2; var midy=options.y+options.h/2; if (info.img){ - g.drawImage(info.img, options.x+4,midy-7.2,{scale: 0.6}); + g.drawImage(info.img, options.x+4,midy-7.2,{scale: 0.63}); }// draw the image - g.setFont("Vector",16).setFontAlign(0,0).drawString(calcStrLength(info.text,6), midx,midy+1); // draw the text + g.setFont("Vector",15).setFontAlign(-1,0).drawString(calcStrLength(info.text,6), options.x+22,midy+1); // draw the text } });