CVS commit by coolo: if the autologin user is empty, do not enable auto login M +4 -1 kdm-conv.cpp 1.27 --- kdebase/kcontrol/kdm/kdm-conv.cpp #1.26:1.27 @@ -198,6 +198,9 @@ void KDMConvenienceWidget::load() { config->setGroup("X-:0-Core"); - alGroup->setChecked(config->readBoolEntry( "AutoLoginEnable", false) ); + bool alenable = config->readBoolEntry( "AutoLoginEnable", false); autoUser = config->readEntry( "AutoLoginUser" ); + if (autoUser.isEmpty()) + alenable=false; + alGroup->setChecked( alenable ); config->setGroup("X-:*-Core");