|
@@ -476,7 +476,7 @@ void Director::config_have_input(void) {
|
|
chain = main_menu;
|
|
chain = main_menu;
|
|
MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
|
|
MenuDispatch *md = dynamic_cast<MenuDispatch *>(&(*chain));
|
|
md->activate();
|
|
md->activate();
|
|
- // destroy the input?
|
|
|
|
|
|
+ // destroy the input? yes.
|
|
config_input.reset();
|
|
config_input.reset();
|
|
return;
|
|
return;
|
|
} else {
|
|
} else {
|
|
@@ -523,13 +523,13 @@ void Director::config_have_input(void) {
|
|
// This is a config item edit
|
|
// This is a config item edit
|
|
if (id->input.empty()) {
|
|
if (id->input.empty()) {
|
|
to_client("No change.\n\r");
|
|
to_client("No change.\n\r");
|
|
- config_item.clear();
|
|
|
|
|
|
+ // cleared by init config_item.clear();
|
|
config_edit();
|
|
config_edit();
|
|
return;
|
|
return;
|
|
} else {
|
|
} else {
|
|
BUGZ_LOG(fatal) << "Config EDIT: " << config_item << " = " << id->input;
|
|
BUGZ_LOG(fatal) << "Config EDIT: " << config_item << " = " << id->input;
|
|
galaxy.config[config_item] = id->input;
|
|
galaxy.config[config_item] = id->input;
|
|
- config_item.clear();
|
|
|
|
|
|
+ // cleared by init config_item.clear();
|
|
config_edit();
|
|
config_edit();
|
|
return;
|
|
return;
|
|
}
|
|
}
|