Skip to content
Snippets Groups Projects
Commit f069f1a6 authored by Thorbjørn Lindeijer's avatar Thorbjørn Lindeijer
Browse files

Forward Home and End keys to the editor when completing

It's annoying and not very useful if they get grabbed and handled by the
completion list. This happened as a side effect of
fc1780f1.
parent 3057c6ec
No related branches found
No related tags found
No related merge requests found
......@@ -368,6 +368,9 @@ bool CompletionListView::event(QEvent *e)
case Qt::Key_Right:
case Qt::Key_Left:
case Qt::Key_Home:
case Qt::Key_End:
// We want these navigation keys to work in the editor, so forward them
break;
case Qt::Key_Tab:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment