config:: help_text included in search_key

This commit is contained in:
Zeno Rogue 2021-02-01 15:23:01 +01:00
parent b7a80937f3
commit 198b4b118d
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ struct setting {
virtual void show_edit_option(char key) {
println(hlog, "default called!"); }
virtual string search_key() {
return parameter_name + "|" + config_name + "|" + menu_item_name;
return parameter_name + "|" + config_name + "|" + menu_item_name + "|" + help_text;
}
virtual cld get_cld() = 0;
setting() { restrict = auto_restrict; }