mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
kconfig: gconf: give a proper initial state to the Save button
[ Upstream commit 46edf4372e
]
Currently, the initial state of the "Save" button is always active.
If none of the CONFIG options are changed while loading the .config
file, the "Save" button should be greyed out.
This can be fixed by calling conf_read() after widget initialization.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
08f03186b9
commit
737161b438
@ -1478,7 +1478,6 @@ int main(int ac, char *av[])
|
|||||||
|
|
||||||
conf_parse(name);
|
conf_parse(name);
|
||||||
fixup_rootmenu(&rootmenu);
|
fixup_rootmenu(&rootmenu);
|
||||||
conf_read(NULL);
|
|
||||||
|
|
||||||
/* Load the interface and connect signals */
|
/* Load the interface and connect signals */
|
||||||
init_main_window(glade_file);
|
init_main_window(glade_file);
|
||||||
@ -1486,6 +1485,8 @@ int main(int ac, char *av[])
|
|||||||
init_left_tree();
|
init_left_tree();
|
||||||
init_right_tree();
|
init_right_tree();
|
||||||
|
|
||||||
|
conf_read(NULL);
|
||||||
|
|
||||||
switch (view_mode) {
|
switch (view_mode) {
|
||||||
case SINGLE_VIEW:
|
case SINGLE_VIEW:
|
||||||
display_tree_part();
|
display_tree_part();
|
||||||
|
Loading…
Reference in New Issue
Block a user