aboutsummaryrefslogtreecommitdiff
path: root/libgui
diff options
context:
space:
mode:
authorMarvin Borner2020-11-23 17:09:28 +0100
committerMarvin Borner2020-11-23 17:09:28 +0100
commit23798b52a0aa4bf556b06f15fb9f5923db3cc46f (patch)
tree352db3855bc4b0262e0477e31c1395e4652097be /libgui
parentd82b18c90710baf16239257272a740488fddf11c (diff)
Ported sxml library
Diffstat (limited to 'libgui')
-rw-r--r--libgui/gfx.c3
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) {