mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +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();
|
tab();
|
||||||
ke->accept();
|
ke->accept();
|
||||||
return true;
|
return true;
|
||||||
|
case Qt::Key_Escape:
|
||||||
|
hidePopup();
|
||||||
|
hideInline();
|
||||||
|
updateVisibility(false, false);
|
||||||
|
return true;
|
||||||
default: break;
|
default: break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user