Version: (using KDE Devel) Installed from: Compiled sources Without this fix, you can't change/save Keytabs in the Session Editor. Index: sessioneditor.cpp =================================================================== RCS file: /home/kde/kdebase/kcontrol/konsole/sessioneditor.cpp,v retrieving revision 1.22 diff -u -3 -p -r1.22 sessioneditor.cpp --- sessioneditor.cpp 6 Apr 2004 22:41:29 -0000 1.22 +++ sessioneditor.cpp 25 Apr 2004 17:01:29 -0000 @@ -106,7 +106,7 @@ void SessionEditor::loadAllKeytab() QString title = readKeymapTitle(name); name = name.section('/',-1); - name = name.section('.',1); + name = name.section('.',0); keytabFilename.append(new QString(name)); if (title.isNull() || title.isEmpty())
Thanks, applied.