From 6387f043f7f870e4f0b402dae0b921d99eb82c39 Mon Sep 17 00:00:00 2001 From: Matt Fleming Date: Thu, 25 Oct 2012 11:35:14 +0100 Subject: [PATCH] menu: Inherit parent menu title The documentation for the menu system clearly states that all properties of the parent are inherited in the submenu. Unfortunately there's a bug that means this isn't true for the parent's menu title, so fix that. Signed-off-by: Matt Fleming --- com32/menu/readconfig.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/com32/menu/readconfig.c b/com32/menu/readconfig.c index cffe8e3..3690e48 100644 --- a/com32/menu/readconfig.c +++ b/com32/menu/readconfig.c @@ -189,6 +189,9 @@ static struct menu *new_menu(struct menu *parent, m->menu_master_passwd = refstr_get(parent->menu_master_passwd); m->menu_background = refstr_get(parent->menu_background); + refstr_put(m->title); + m->title = refstr_get(parent->title); + m->color_table = copy_color_table(parent->color_table); for (i = 0; i < 12; i++) { -- 2.7.4