aboutsummaryrefslogtreecommitdiff
path: root/libgui/gfx.c
diff options
context:
space:
mode:
authorMarvin Borner2020-11-18 22:12:40 +0100
committerMarvin Borner2020-11-18 22:12:40 +0100
commitbe1fa7dfe5d98cf636b8f54ea80152f47006203b (patch)
treebed590b3e77de39bbb55f3d81d01b02661746129 /libgui/gfx.c
parenta5a04ef3de6ad3f81d37a04fede23eb3b4b348b1 (diff)
HTTP and browser stuff
Diffstat (limited to 'libgui/gfx.c')
-rw-r--r--libgui/gfx.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/libgui/gfx.c b/libgui/gfx.c
index 74f0138..066ab81 100644
--- a/libgui/gfx.c
+++ b/libgui/gfx.c
@@ -108,13 +108,20 @@ void gfx_write(struct context *ctx, int x, int y, enum font_type font_type, u32
u32 cnt = 0;
for (u32 i = 0; i < strlen(text); i++) {
// TODO: Should this be here?
- if (text[i] == '\n') {
+ if (text[i] == '\r') {
+ cnt = 0;
+ } else if (text[i] == '\n') {
cnt = 0;
y += font->height;
} else {
+ // TODO: Overflow on single line input
+ if ((cnt + 1) * font->width > ctx->width) {
+ cnt = 0;
+ y += font->height;
+ }
write_char(ctx, x + cnt * font->width, y, font, c, text[i]);
+ cnt++;
}
- cnt++;
}
/* gfx_redraw(); */
}