diff options
author | Marvin Borner | 2020-11-23 17:09:28 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-23 17:09:28 +0100 |
commit | 23798b52a0aa4bf556b06f15fb9f5923db3cc46f (patch) | |
tree | 352db3855bc4b0262e0477e31c1395e4652097be /libgui/gfx.c | |
parent | d82b18c90710baf16239257272a740488fddf11c (diff) |
Ported sxml library
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) { |