Bug 127037

Summary: configure editor settings -- focus jumps (minor)
Product: [Frameworks and Libraries] kdelibs Reporter: Maciej Pilichowski <bluedzins>
Component: generalAssignee: KWrite Developers <kwrite-bugs-null>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: openSUSE   
OS: Linux   
Latest Commit: Version Fixed In:

Description Maciej Pilichowski 2006-05-09 19:47:23 UTC
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.
Comment 1 Jens Dagerbo 2006-05-09 20:33:44 UTC
Haha! Yeah, that IS minor! I wonder if it's intentional...

Anyway, it's done by katepart. Reassigning.
Comment 2 Andreas Kling 2006-07-03 19:13:17 UTC
This is because the KKeyChooser widget steals focus when created.
See KKeyChooser::initGUI() at kdelibs/kdeui/kkeydialog.cpp:347
Comment 3 Andreas Kling 2006-07-13 23:54:56 UTC
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);