diff --git a/lib/gfx/gfx.c b/lib/gfx/gfx.c
index 8e6c6115ce28b399f85fe3d8f33737553a2d4de4..c076a8343e39b8fef7d2f29beb825f06ba17d007 100644
--- a/lib/gfx/gfx.c
+++ b/lib/gfx/gfx.c
@@ -95,9 +95,6 @@ void gfx_puts(
 			x = 0;
 			y += font->Height;
 		}
-		// if the line is outside the display we return
-		if (y >= r->height)
-			return;
 
 		// now print the character
 		gfx_putchar(font, r, x, y, *str, fg, bg);