mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-17 14:08:41 -09:00
Remove second open arg (#2544)
This was removed in xterm@3, see xtermjs/xterm.js#646
This commit is contained in:
parent
15a7e6ad9b
commit
421847315d
1 changed files with 1 additions and 3 deletions
|
|
@ -46,9 +46,7 @@ export default class Term extends PureComponent {
|
||||||
cursorBlink: props.cursorBlink
|
cursorBlink: props.cursorBlink
|
||||||
});
|
});
|
||||||
this.term.attachCustomKeyEventHandler(this.keyboardHandler);
|
this.term.attachCustomKeyEventHandler(this.keyboardHandler);
|
||||||
this.term.open(this.termRef, {
|
this.term.open(this.termRef);
|
||||||
focus: false
|
|
||||||
});
|
|
||||||
this.onOpen();
|
this.onOpen();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue