mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
+2
-1
@@ -133,7 +133,8 @@
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.xterm.xterm-cursor-pointer {
|
||||
.xterm.xterm-cursor-pointer,
|
||||
.xterm .xterm-cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
@@ -537,7 +537,7 @@ export class Terminal extends CoreTerminal implements ITerminal {
|
||||
this.register(this._mouseZoneManager);
|
||||
this.register(this.onScroll(() => this._mouseZoneManager!.clearAll()));
|
||||
this.linkifier.attachToDom(this.element, this._mouseZoneManager);
|
||||
this.linkifier2.attachToDom(this.element, this._mouseService, this._renderService);
|
||||
this.linkifier2.attachToDom(this.screenElement, this._mouseService, this._renderService);
|
||||
|
||||
// This event listener must be registered aftre MouseZoneManager is created
|
||||
this.register(addDisposableDomListener(this.element, 'mousedown', (e: MouseEvent) => this._selectionService!.onMouseDown(e)));
|
||||
|
||||
Vendored
+2
-2
@@ -1265,12 +1265,12 @@ declare module 'xterm' {
|
||||
*/
|
||||
interface IBufferCellPosition {
|
||||
/**
|
||||
* The x position within the buffer.
|
||||
* The x position within the buffer (1-based).
|
||||
*/
|
||||
x: number;
|
||||
|
||||
/**
|
||||
* The y position within the buffer.
|
||||
* The y position within the buffer (1-based).
|
||||
*/
|
||||
y: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user