* QCommandBuffer::complete(): Add connection to QListWidget::itemActivated() in order to select in the help list with "Enter".

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17863 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-04-19 16:43:09 +00:00
parent f16d156a63
commit 2da59470a9

View File

@ -171,6 +171,8 @@ void QCommandBuffer::complete()
connect(list, SIGNAL(itemPressed(QListWidgetItem *)),
this, SLOT(complete_selected(QListWidgetItem *)));
connect(list, SIGNAL(itemActivated(QListWidgetItem *)),
this, SLOT(complete_selected(QListWidgetItem *)));
list->show();
list->setFocus();