mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
Completion popup menu did not respond to Esc.
https://www.mail-archive.com/lyx-devel@lists.lyx.org/msg207346.html
This commit is contained in:
parent
da273a944f
commit
33284ee5c8
@ -216,6 +216,11 @@ bool GuiCompleter::eventFilter(QObject * watched, QEvent * e)
|
||||
tab();
|
||||
ke->accept();
|
||||
return true;
|
||||
case Qt::Key_Escape:
|
||||
hidePopup();
|
||||
hideInline();
|
||||
updateVisibility(false, false);
|
||||
return true;
|
||||
default: break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user