diff options
author | Samuel Mendoza-Jonas <sam.mj@au1.ibm.com> | 2015-05-08 13:42:00 +1000 |
---|---|---|
committer | Samuel Mendoza-Jonas <sam.mj@au1.ibm.com> | 2015-05-20 16:53:24 +1000 |
commit | a1b17961420c2d95a62d9003b75431f706e96753 (patch) | |
tree | 21891d423bf6b525355fb4481521bdb4a379a55d | |
parent | a7307c0962b4de0e6459ea449939b79dfe1705cd (diff) | |
download | talos-petitboot-a1b17961420c2d95a62d9003b75431f706e96753.tar.gz talos-petitboot-a1b17961420c2d95a62d9003b75431f706e96753.zip |
ui/ncurses: Toggle visibility of timeout help label
Signed-off-by: Samuel Mendoza-Jonas <sam.mj@au1.ibm.com>
-rw-r--r-- | ui/ncurses/nc-config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/ncurses/nc-config.c b/ui/ncurses/nc-config.c index 6164873..911559d 100644 --- a/ui/ncurses/nc-config.c +++ b/ui/ncurses/nc-config.c @@ -429,6 +429,7 @@ static void config_screen_layout_widgets(struct config_screen *screen) wh = widget_label_base(screen->widgets.timeout_help_l); widget_set_visible(wl, screen->autoboot_enabled); widget_set_visible(wf, screen->autoboot_enabled); + widget_set_visible(wh, screen->autoboot_enabled); if (screen->autoboot_enabled) { widget_set_visible(wh, screen->autoboot_enabled); widget_move(wl, y, screen->label_x); |