Skip to content
Snippets Groups Projects
Commit 36ef805b authored by Sam Ravnborg's avatar Sam Ravnborg
Browse files

kconfig: mark config as changed when loading an alternate config


Michal Zachar <mgzachar@mail.t-com.sk> reported that
menuconfig did not save the new config when loading
an alternate config unless he altered it manually.

Mark config as changed upon load of alternate config fixed this.

Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
Roman Zippel <zippel@linux-m68k.org>
parent d6fbfa4f
No related branches found
No related tags found
No related merge requests found
...@@ -821,6 +821,7 @@ static void conf_load(void) ...@@ -821,6 +821,7 @@ static void conf_load(void)
return; return;
if (!conf_read(dialog_input_result)) { if (!conf_read(dialog_input_result)) {
set_config_filename(dialog_input_result); set_config_filename(dialog_input_result);
sym_set_change_count(1);
return; return;
} }
show_textbox(NULL, _("File does not exist!"), 5, 38); show_textbox(NULL, _("File does not exist!"), 5, 38);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment