mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Merge pull request #3130 from matrix-org/bwindels/disable-left-right-autocomplete
Disable left/right arrow navigating completions for now
This commit is contained in:
commit
50315557ba
1 changed files with 0 additions and 8 deletions
|
@ -682,14 +682,6 @@ export default class MessageComposerInput extends React.Component {
|
||||||
if (this.autocomplete.countCompletions() > 0) {
|
if (this.autocomplete.countCompletions() > 0) {
|
||||||
if (!(ev.ctrlKey || ev.shiftKey || ev.altKey || ev.metaKey)) {
|
if (!(ev.ctrlKey || ev.shiftKey || ev.altKey || ev.metaKey)) {
|
||||||
switch (ev.keyCode) {
|
switch (ev.keyCode) {
|
||||||
case KeyCode.LEFT:
|
|
||||||
this.autocomplete.moveSelection(-1);
|
|
||||||
ev.preventDefault();
|
|
||||||
return true;
|
|
||||||
case KeyCode.RIGHT:
|
|
||||||
this.autocomplete.moveSelection(+1);
|
|
||||||
ev.preventDefault();
|
|
||||||
return true;
|
|
||||||
case KeyCode.UP:
|
case KeyCode.UP:
|
||||||
this.autocomplete.moveSelection(-1);
|
this.autocomplete.moveSelection(-1);
|
||||||
ev.preventDefault();
|
ev.preventDefault();
|
||||||
|
|
Loading…
Reference in a new issue