From 414fde9b77feb3a516c2ba22fed825fde88b88b4 Mon Sep 17 00:00:00 2001 From: IoI_xD Date: Thu, 26 Mar 2026 22:53:20 -0700 Subject: [PATCH] fix text positioning on entry --- src/widget/entry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget/entry.c b/src/widget/entry.c index 9c6ed12..47307fc 100644 --- a/src/widget/entry.c +++ b/src/widget/entry.c @@ -48,7 +48,7 @@ static void draw(MwWidget handle) { int attr; MwRect currc; - p.x = (r.width - (r.width / w * w)) / 2; + p.x = (r.width - (r.width / w * w)) / 2 + (MwGetInteger(handle, MwNisRounded) ? MwGetInteger(handle, MwNroundness) : 0); p.y = r.height / 2; len = (r.width - p.x * 2) / w;