Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kconfig: qconf: move conf_read() before drawing tree pain

The constructor of ConfigMainWindow() calls show*View(), which needs
to calculate symbol values. conf_read() must be called before that.

Fixes: 060e05c3b422 ("kconfig: qconf: remove initial call to conf_changed()")
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

+2 -2
+2 -2
scripts/kconfig/qconf.cc
··· 1505 1505 connect(helpText, &ConfigInfoView::menuSelected, 1506 1506 this, &ConfigMainWindow::setMenuLink); 1507 1507 1508 + conf_read(NULL); 1509 + 1508 1510 QString listMode = configSettings->value("/listMode", "symbol").toString(); 1509 1511 if (listMode == "single") 1510 1512 showSingleView(); ··· 1907 1905 //zconfdump(stdout); 1908 1906 configApp->connect(configApp, SIGNAL(lastWindowClosed()), SLOT(quit())); 1909 1907 configApp->connect(configApp, SIGNAL(aboutToQuit()), v, SLOT(saveSettings())); 1910 - 1911 - conf_read(NULL); 1912 1908 1913 1909 v->show(); 1914 1910 configApp->exec();