diff options
author | Marvin Borner | 2020-11-18 22:12:40 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-18 22:12:40 +0100 |
commit | be1fa7dfe5d98cf636b8f54ea80152f47006203b (patch) | |
tree | bed590b3e77de39bbb55f3d81d01b02661746129 /libgui | |
parent | a5a04ef3de6ad3f81d37a04fede23eb3b4b348b1 (diff) |
HTTP and browser stuff
Diffstat (limited to 'libgui')
-rw-r--r-- | libgui/gfx.c | 11 |
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(); */ } |