From 31f7701af309e517adbca2419b27c794688e91ba Mon Sep 17 00:00:00 2001 From: zyxkad Date: Sat, 2 Dec 2023 18:15:30 -0700 Subject: [PATCH] remove a debug log --- text/font.go | 1 - 1 file changed, 1 deletion(-) diff --git a/text/font.go b/text/font.go index fa051f1d..7c186255 100644 --- a/text/font.go +++ b/text/font.go @@ -214,7 +214,6 @@ func (f *Font) Metrics() font.Metrics { func (f *Font) DrawText(text string) *image.RGBA { width, height := f.MeasureText(text) - println(width, height) img := image.NewRGBA(image.Rect(0, 0, width, height)) draw.Draw(img, img.Bounds(), f.bg, image.ZP, draw.Src) f.DrawTextOnImage(text, 0, 0, img)