Version: 0.7 (using KDE 3.4.0, Debian Package 4:3.4.0-0pre4 (3.1)) Compiler: gcc version 3.3.5 (Debian 1:3.3.5-8) OS: Linux (i686) release 2.6.11-1-k7 After opening Icon Selector and selecting an icon (with the mouse or kb) if I press "Enter" key nothing happens. It should have the same effect as pressing the "Ok" button.
CVS commit by waba: Pressing Enter selects icons. BUG: 104475 M +1 -0 kicondialog.cpp 1.48 --- kdelibs/kio/kfile/kicondialog.cpp #1.47:1.48 @@ -312,4 +312,5 @@ void KIconDialog::init() mpCanvas = new KIconCanvas(main); connect(mpCanvas, SIGNAL(executed(QIconViewItem *)), SLOT(slotAcceptIcons())); + connect(mpCanvas, SIGNAL(returnPressed(QIconViewItem *)), SLOT(slotAcceptIcons())); mpCanvas->setMinimumSize(400, 125); top->addWidget(mpCanvas);