Summary: | configure editor settings -- focus jumps (minor) | ||
---|---|---|---|
Product: | [Unmaintained] kdelibs | Reporter: | Maciej Pilichowski <bluedzins> |
Component: | general | Assignee: | 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: | ||
Sentry Crash Report: |
Description
Maciej Pilichowski
2006-05-09 19:47:23 UTC
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); |