From a685c78f33418c109313a6fc4ea25bb8b90a8111 Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Fri, 18 Jul 2014 10:49:32 +0800 Subject: [PATCH] ui/ncurses: Make Network: heading consistent with other labels The 'Network' label was originally intended as a header, but we should keep it consistent with other field labels. Signed-off-by: Jeremy Kerr --- ui/ncurses/nc-config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/ncurses/nc-config.c b/ui/ncurses/nc-config.c index 8c5e9a2..d345c85 100644 --- a/ui/ncurses/nc-config.c +++ b/ui/ncurses/nc-config.c @@ -634,7 +634,7 @@ static void config_screen_setup_widgets(struct config_screen *screen, widget_textbox_set_fixed_size(screen->widgets.timeout_f); widget_textbox_set_validator_integer(screen->widgets.timeout_f, 0, 999); - screen->widgets.network_l = widget_new_label(set, 0, 0, "Network"); + screen->widgets.network_l = widget_new_label(set, 0, 0, "Network:"); screen->widgets.network_f = widget_new_select(set, 0, 0, 50); widget_select_add_option(screen->widgets.network_f, -- 2.39.2