Version: (using KDE KDE 3.5.2) Installed from: SuSE RPMs Go to settings -> configure editor press and hold [arrow down]. Near the bottom focus will jump to the right.
Haha! Yeah, that IS minor! I wonder if it's intentional... Anyway, it's done by katepart. Reassigning.
This is because the KKeyChooser widget steals focus when created. See KKeyChooser::initGUI() at kdelibs/kdeui/kkeydialog.cpp:347
SVN commit 562008 by kling: Made KKeyChooser not steal focus when created. Discussed with Aaron Seigo. BUG: 127037 CCMAIL: kde-core-devel@kde.org M +0 -1 kkeydialog.cpp --- branches/KDE/3.5/kdelibs/kdeui/kkeydialog.cpp #562007:562008 @@ -344,7 +344,6 @@ stackLayout->setRowStretch( 1, 10 ); // Only list will stretch d->pList = new KListView( this ); - d->pList->setFocus(); listViewSearch->setListView(d->pList); // Plug into search line QValueList<int> columns; columns.append(0);