diff options
Diffstat (limited to 'libgui/gfx.c')
-rw-r--r-- | libgui/gfx.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libgui/gfx.c b/libgui/gfx.c index 3d3785e..6d54550 100644 --- a/libgui/gfx.c +++ b/libgui/gfx.c @@ -121,7 +121,10 @@ void gfx_write(struct context *ctx, int x, int y, enum font_type font_type, u32 cnt = 0; } else if (text[i] == '\n') { cnt = 0; + x = 0; y += font->height; + } else if (text[i] == '\t') { + x += 4 * font->width; } else { // TODO: Overflow on single line input if ((cnt + 1) * font->width > ctx->width) { |