aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2020-11-28 19:13:32 +0100
committerMarvin Borner2020-11-28 19:14:14 +0100
commite983cfa7f8580e39a181184fb2ae3a990597c02a (patch)
tree58646ec9e3752b5c87a966921a739a4d2740ced3 /apps
parentc2306a5b346abc4b1d778f0071f90caec3c264ac (diff)
Kinda-working renderer
Diffstat (limited to 'apps')
-rw-r--r--apps/browser.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/browser.c b/apps/browser.c
index 160b626..0c2a430 100644
--- a/apps/browser.c
+++ b/apps/browser.c
@@ -92,6 +92,8 @@ void on_submit(void *event, struct element *box)
c->color_fg = status_color(c->text);
} else {
/* l->text = strdup("Can't connect to server."); */
+ gui_add_label(output, 0, 0, FONT_16, "Can't connect to server.", COLOR_WHITE,
+ COLOR_BLACK);
c->text = strdup("000");
c->color_fg = COLOR_RED;
}
@@ -107,7 +109,9 @@ int main()
code_label = gui_add_label(root, 0, 0, FONT_24, "000", COLOR_BLACK, COLOR_WHITE);
struct element *text_input =
gui_add_text_input(root, LABEL_WIDTH, 0, 100, FONT_24, COLOR_WHITE, COLOR_BLACK);
- output = gui_add_container(root, 0, FONT_HEIGHT + 2, 100, 100, COLOR_GREEN);
+ output = gui_add_container(root, 0, FONT_HEIGHT + 2, 100, 100, COLOR_WHITE);
+ gui_add_label(output, 0, 0, FONT_16, "Enter URL and press Enter :)", COLOR_WHITE,
+ COLOR_BLACK);
text_input->event.on_submit = on_submit;