mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 11:16:55 +00:00
* 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:
parent
f16d156a63
commit
2da59470a9
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user